ErrorCodeExceptionpublic class ErrorCodeException extends Exception
Fields Summary |
---|
private Object[] | args | private int | code |
Constructors Summary |
---|
public ErrorCodeException(int code)
this.code = code;
| public ErrorCodeException(int code, Object[] args)
this.code = code;
this.args = args;
| public ErrorCodeException(int code, Object[] args, String msg)
super(msg);
this.code = code;
this.args = args;
| public ErrorCodeException(int code, Object[] args, String msg, Throwable cause)
super(msg, cause);
this.code = code;
this.args = args;
|
Methods Summary |
---|
public java.lang.Object[] | getArgs()
return args;
| public int | getCode()
return code;
|
|