Files
2025-05-26 13:23:28 +00:00

9 lines
153 B
Plaintext

public void m2() {
try {
m();
} catch(CheckedException e) {
throw new RuntimeException(e);
}
}
public void m() throws CheckedException { }