blob: 359db670c3d3a3906c82d47c559e8f64b8e5b3dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
try {
await import("./error_001.ts");
} catch (error) {
console.log(`Caught: ${error.stack}`);
}
try {
await import("./error_001.ts");
} catch (error) {
console.log(`Caught: ${error.stack}`);
}
|