Files
openide/java/java-tests/testData/refactoring/changeSignature/AddException_after.java
Dmitry Jemerov b854be0323 test++
2009-09-10 20:09:11 +04:00

13 lines
264 B
Java

class Test {
void foo () throws Exception {
}
void bar () {
try {
foo();
} catch (Exception e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
}