blob: 384c9c22fbafdd144c136c970cd5f87eeabadebd [file] [log] [blame]
let e = nil;
try {
throw new java.io.IOException("test");
}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;
}