public class JdapiStatusException extends JdapiException
The status codes are included as members of JdapiTypes, ending in _STID.
Do not program against the numbers themselves
(eg. if(status == 1)
... )
but use the members
(eg. if(status == JdapiTypes.FAIL_STID)
...).
Constructor and Description |
---|
JdapiStatusException(java.lang.String message,
int statusCode)
Constructor taking message and status code as an argument.
|
Modifier and Type | Method and Description |
---|---|
int |
getStatusCode()
Returns the status code of this exception.
|