Files
openide/java/java-tests/testData/refactoring/changeSignature/AddException_after.java
T
2013-05-06 21:21:52 +02:00

13 lines
189 B
Java

class Test {
void foo () throws Exception {
}
void bar () {
try {
foo();
} catch (Exception e) {
e.printStackTrace();
}
}
}