mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
14 lines
342 B
Java
14 lines
342 B
Java
// "Add Catch Clause(s)" "true"
|
|
class a {
|
|
void g() throws Exception {
|
|
}
|
|
void f() {
|
|
try {
|
|
g();
|
|
} catch (Error e) {
|
|
} catch (Exception e) {
|
|
<caret><selection>e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
}
|