mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-17 10:40:31 +07:00
18 lines
386 B
Java
18 lines
386 B
Java
// "Add exception to existing catch clause" "true"
|
|
import java.io.FileInputStream;
|
|
import java.io.FileNotFoundException;
|
|
|
|
class Test {
|
|
void m() {
|
|
try {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() { }
|
|
|
|
InputStream in = new FileInputStream("");
|
|
};
|
|
} catch (RuntimeException | FileNotFoundException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |