mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
291 B
Java
18 lines
291 B
Java
class A {
|
|
public void test() {
|
|
try {
|
|
test2();
|
|
}
|
|
catch(Inner ex) {
|
|
}
|
|
}
|
|
|
|
private void test2() {
|
|
}
|
|
|
|
private class <caret>Inner extends RuntimeException {
|
|
public String toString() {
|
|
return "A";
|
|
}
|
|
}
|
|
} |