1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/aggregate_error.ts

10 lines
250 B
TypeScript
Raw Normal View History

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;