Class CallNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class CallNotFoundException
    extends PhoneSystemException
    Signals that a specified call does not exist or could not be found.
    Since:
    11.27
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String callId  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getCallId()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • callId

        protected final java.lang.String callId
    • Constructor Detail

      • CallNotFoundException

        public CallNotFoundException​(java.lang.String callId)
        Parameters:
        callId - the id of the call (which is saved for later retrieval by the getCallId() method).
        Since:
        11.27
      • CallNotFoundException

        public CallNotFoundException​(java.lang.String callId,
                                     java.lang.String message)
        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).
        Since:
        11.27
    • Method Detail

      • getCallId

        public java.lang.String getCallId()
        Returns:
        the callId
        Since:
        11.27