Files
openide/java/java-tests/testData/refactoring/changeSignaturePropagation/ExceptionSimple.java.after
Dmitry Jemerov 8349aa1889 test++
2009-09-10 20:06:27 +04:00

16 lines
319 B
Plaintext

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