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);
}