mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class A {
|
||||
private Object b = new MyException("w");
|
||||
|
||||
private class <caret>MyException extends Exception {
|
||||
public MyException(String msg) {
|
||||
this(new Throwable(), msg);
|
||||
}
|
||||
|
||||
public MyException(Throwable t, String msg) {
|
||||
super(msg, t);
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return "q";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user