Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addCatchBlock/after1.java
2010-06-25 12:46:40 +04:00

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>
}
}
}