Files
ValueScript/concept-code/exceptions/tryCatchFinally.ts
2023-03-23 11:15:38 +11:00

10 lines
164 B
TypeScript

export default function () {
try {
throw new Error("boom");
} catch {
throw new Error("megaboom");
} finally {
throw new Error("teraboom");
}
}