blob: 00c8d359aa65d00972c78024d3e0939909116953 [file] [log] [blame]
package trycatch_out;
public class TestThrowInCatch {
void f() throws Exception{
/*]*/try {
try{
} catch (Exception e){
throw new Exception();
}
} catch (Exception e) {
}/*[*/
}
}