mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
14 lines
245 B
Java
14 lines
245 B
Java
// "Add exception to existing catch clause" "false"
|
|
import java.io.File;
|
|
|
|
class Test {
|
|
void test() {
|
|
try { }
|
|
catch (Error ex) {
|
|
try { }
|
|
catch (RuntimeException ex2) {
|
|
Class.forName<caret>("xyz");
|
|
}
|
|
}
|
|
}
|
|
} |