blob: 85f076c6c7ba21838faf9118b37bfbd742055058 [file] [log] [blame]
// "Add Catch Clause(s)" "true"
class CatchExceptions {
void foo() throws java.io.IOException, java.io.FileNotFoundException {
}
void bar() {
try {
foo();<caret>
}
}
}