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