blob: b2e299fa9e0f6a9ed426c9a74c8307ce95227943 [file] [log] [blame]
let e = nil;
try {
map(1, 3);
}catch(ClassCastException ex) {
e = ex;
return 1;
}catch(java.io.IOException ex) {
e = ex;
return 2;
}catch(ex) {
e = ex;
return 3;
}finally{
return e;
}