我有以下例外

public class MyException extends SecurityException{
      public MyException( String s ) { super( s ) ; }
}


其中SecurityExceptionjava.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; }
}

10-07 20:34