blob: b08b5fd7a66667779e75ff95ac5bb3942f4cce09 [file] [log] [blame]
class MyException extends Exception{}
class MyClass {
public void foo() throws MyException {
throw new MyException();<caret>
}
}