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