summaryrefslogtreecommitdiff
path: root/tests/testdata/run/aggregate_error.ts
blob: ce4b543762f011646450f8aa47f24935dbad96de (plain)
1
2
3
4
5
6
7
8
9
const aggregateError = new AggregateError([
  new Error("Error message 1."),
  new Error("Error message 2."),
], "Multiple errors.");
console.log(aggregateError.stack);
console.log();
console.log(aggregateError);
console.log();
throw aggregateError;