blob: 4d1b3c9d9a138feee414416074a8538394b557f2 [file]
## examples/handle_exception.av
try {
throw "an exception";
} catch(e) {
## print stack trace
pst(e);
} finally {
p("finally");
}