blob: b7feaa796a53b31d3834331ae7e7e89c362f7949 [file] [log] [blame]
class A {
private Object b = new MyException("w");
private class <caret>MyException extends Exception {
public MyException(String msg) {
super(msg.substring(0, 1));
}
public String getMessage() {
return "q";
}
}
}