blob: e006fab81f1a48f53daa6caa7cbc896bcee65cdc [file] [log] [blame]
class A {
private Object b = new MyException();
private class <caret>MyException extends Exception {
public MyException() {
super("w");
if (toString().length() == 0) return;
System.out.println(toString());
}
public String getMessage() {
return "q";
}
}
}