mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
20 lines
374 B
Java
20 lines
374 B
Java
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
|
|
class MyTest {
|
|
|
|
public void foo() {
|
|
try {
|
|
bar();
|
|
}
|
|
catch (FileNotFoundException e) {
|
|
<error descr="Unhandled exception: java.io.FileNotFoundException">throw e;</error>
|
|
}
|
|
catch (IOException ignored) { }
|
|
}
|
|
|
|
private void bar() throws IOException, RuntimeException { }
|
|
}
|
|
|