mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
|
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;
|