Files
2022-02-14 10:51:34 +00:00

16 lines
325 B
Java

class Main {
static int test() {
String msg = "ERR1";
try {
msg = "ERR2"; // HERE
return throwsNFE();
} catch (NumberFormatException e) {
System.err.println(msg);
}
return 0;
}
static int throwsNFE() throws NumberFormatException {
throw new NumberFormatException("NFE");
}
}