blob: 024a966bac8ab162f5f8f0571bebf6e9994fe696 [file] [log] [blame]
class Test {
void foo () throws Exception {
}
void bar () {
try {
foo();
} catch (Exception e) {
e.printStackTrace();
}
}
}