You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
387 B

try {
try {
println("hello")
throw "ERROR 12";
println("that should not be executed");
} catch (e) {
println("catch!")
println("inner: ", e)
throw "pizza"
print("after pizza")
} finally {
println("finally...")
throw "oh no"
println("after oh no")
}
} catch (e) {
println("outer: ", e);
}