mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
384 B
Java
17 lines
384 B
Java
// "Add Catch Clause(s)" "true"
|
|
class a {
|
|
void g() throws Exception {
|
|
}
|
|
|
|
// initializer
|
|
{
|
|
try {
|
|
// comment before
|
|
g();
|
|
// comment after
|
|
} catch (Exception e) {
|
|
<caret><selection>e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
}
|