我有以下例外
public class MyException extends SecurityException{
public MyException( String s ) { super( s ) ; }
}
其中
SecurityException
是java.lang.SecurityException
。每当我抛出
MyException("Message");
时,我都可以得到消息。现在,在
MyException
中,我想通过integer
传递MyException
值,并在捕获该integer
的位置访问该MyException
。我怎么做 ?
最佳答案
public class MyException extends SecurityException{
private int i;
public MyException(String s, int i) {
super(s);
this.i = i;
}
public int getI() { return i; }
}