Class PhoneSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.novomind.ecom.api.iagent.exception.PhoneSystemException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AgentDeviceOperationException
,CallNotFoundException
,CallOperationException
Generic exception to be used for all kinds of errors
related to a
PhoneSystemConnector
- Since:
- 11.27
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPhoneSystemException
(String message) PhoneSystemException
(String message, int errorCode) PhoneSystemException
(String message, int errorCode, Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Field Details
-
errorCode
protected final int errorCode
-
-
Constructor Details
-
PhoneSystemException
public PhoneSystemException()- Since:
- 11.27
-
PhoneSystemException
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- Since:
- 11.27
-
PhoneSystemException
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).errorCode
- the optional error code of the exception (which is saved for later retrieval by thegetErrorCode()
method).- Since:
- 11.27
-
PhoneSystemException
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).errorCode
- the optional error code of the exception (which is saved for later retrieval by thegetErrorCode()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 11.27
-
-
Method Details