Sign in
apache
/
casbin-jcasbin-aviatorscript
/
refs/heads/master
/
.
/
examples
/
throw_catch.av
blob: 3e0748baee86118728d34083f17587025d05d46f [
file
]
## examples/throw_catch.av
try
{
throw
new
IllegalArgumentException
(
"test"
);
}
catch
(
IllegalArgumentException
e
)
{
p
(
"catch IllegalArgumentException."
);
pst
(
e
);
}
catch
(
e
)
{
p
(
"catch all throwable."
);
pst
(
e
);
}