blob: 7ca2e7ee1680d62260d076ae366761d84a292a99 [file] [log] [blame]
package trycatch_out;
public class TestNested {
public void foo() {
try {
throw new Exception();
} catch (Exception e) {
try {
/*[*/throw new Exception();/*]*/
} catch (Exception e1) {
}
}
}
}