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