Given the following code:
function bar() {
throw new Lang.Exception();
}
function foo() {
try {
} catch (ex) {
} finally {
try {
bar();
} catch (ex) {}
System.println("Still ok");
}
System.println("but never gets here");
}...