blob: 0154d57994fdad7de661678ff567ec2cd9019041 [file] [log] [blame]
class A {
private Object b = new MyException();
private class <caret>MyException extends Exception {
public MyException() {
super("w");
}
public String getMessage() {
return "q";
}
}
}