mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
- tests are extracted - CatchLookupElement works in dumb-mode GitOrigin-RevId: 75b5c34ce124a4315a8a73c020ac08f01ecd9487
17 lines
288 B
Java
17 lines
288 B
Java
class X{
|
|
class CheckedException1 extends RuntimeException {
|
|
}
|
|
class CheckedException2 extends RuntimeException {
|
|
}
|
|
public void test() {
|
|
try {
|
|
method1();
|
|
throw new CheckedException2();
|
|
} c<caret>
|
|
}
|
|
|
|
private void method1() throws CheckedException1{
|
|
|
|
}
|
|
}
|