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