blob: 878cde07d8c356f018e30bac00fa364edfe65b8b [file] [log] [blame]
package trycatch_in;
public class TestNested {
public void foo() {
try {
throw new Exception();
} catch (Exception e) {
/*[*/throw new Exception();/*]*/
}
}
}