mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
15 lines
295 B
Java
15 lines
295 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) {
|
|
} finally // comment
|
|
{
|
|
throw new MyException<caret>();
|
|
}
|
|
}
|
|
} |