This commit is contained in:
Dmitry Jemerov
2009-09-10 20:06:27 +04:00
parent d1b91105a2
commit 8349aa1889
9 changed files with 9 additions and 2 deletions
@@ -0,0 +1,16 @@
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.
}
}
}