mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
13 lines
264 B
Java
13 lines
264 B
Java
// "Add exception to existing catch clause" "false"
|
|
import java.io.File;
|
|
|
|
class MyException extends Exception {}
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
try {
|
|
} catch (RuntimeException e) {
|
|
throw new MyException<caret>();
|
|
}
|
|
}
|
|
} |