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