Class CallOperationException

All Implemented Interfaces:
Serializable

public class CallOperationException extends PhoneSystemException
Signals that an exception has occurred during an operation on a call.
Since:
11.27
See Also:
  • Field Details

    • callId

      protected final String callId
  • Constructor Details

    • CallOperationException

      public CallOperationException(String callId, String message, int errorCode)
      Parameters:
      callId - the id of the call (which is saved for later retrieval by the getCallId() method).
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      errorCode - the optional error code of the exception (which is saved for later retrieval by the PhoneSystemException.getErrorCode() method).
      Since:
      11.27
    • CallOperationException

      public CallOperationException(String callId, String message, int errorCode, Throwable cause)
      Parameters:
      callId - the id of the call (which is saved for later retrieval by the getCallId() method).
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      errorCode - the optional error code of the exception (which is saved for later retrieval by the PhoneSystemException.getErrorCode() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      11.27
  • Method Details