Sign in
apache
/
casbin-jcasbin-aviatorscript
/
f4376f20a0d7e330a5df7c23f45d5ef64fc1c1c9
/
.
/
examples
/
handle_exception.av
blob: 4d1b3c9d9a138feee414416074a8538394b557f2 [
file
]
## examples/handle_exception.av
try
{
throw
"an exception"
;
}
catch
(
e
)
{
## print stack trace
pst
(
e
);
}
finally
{
p
(
"finally"
);
}