blob: bcd09a0c6ab1f78c54fff438e9137453102593c7 [file] [log] [blame]
try {
throw new java.io.IOException("test");
}catch(IllegalArgumentException | ClassCastException e) {
return 1;
} catch(IllegalStateException | ArrayIndexOutOfBoundsException | java.io.IOException e) {
pst(e);
return 2;
} catch(e) {
return 3;
}