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