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