mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
12 lines
189 B
Java
12 lines
189 B
Java
// "Add 'catch' clause(s)" "true-preview"
|
|
class a {
|
|
void g() throws Exception {
|
|
}
|
|
void f() {
|
|
try {
|
|
<caret>g();
|
|
} catch (Error e) {
|
|
}
|
|
}
|
|
}
|