blob: 79892bdce87c933480f9a0d66b6c484d607bfbd7 [file] [log] [blame]
class MyException extends Exception {}
class Test {
void test() throws MyException {
try {
throw new RuntimeException();
} catch(Exception e) {
throw (<caret>)
}
}
}