Constructors Summary |
---|
public ServiceException(int errorCode)Constructs a new ServiceException
super();
this.errorCode = errorCode;
|
public ServiceException(String arg0, int errorCode)Constructs a new ServiceException
super(arg0);
this.errorCode = errorCode;
|
public ServiceException(String arg0, Throwable arg1, int errorCode)Constructs a new ServiceException
super(arg0, arg1);
this.errorCode = errorCode;
|
public ServiceException(Throwable arg0, int errorCode)Constructs a new ServiceException
super(arg0);
this.errorCode = errorCode;
|