Class CallNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.novomind.ecom.api.iagent.exception.PhoneSystemException
-
- com.novomind.ecom.api.iagent.exception.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
-
Fields inherited from class com.novomind.ecom.api.iagent.exception.PhoneSystemException
errorCode
-
-
Constructor Summary
Constructors Constructor Description CallNotFoundException(java.lang.String callId)
CallNotFoundException(java.lang.String callId, java.lang.String message)
-
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 com.novomind.ecom.api.iagent.exception.PhoneSystemException
getErrorCode
-
-
-
-
Constructor Detail
-
CallNotFoundException
public CallNotFoundException(java.lang.String callId)
- Parameters:
callId
- the id of the call (which is saved for later retrieval by thegetCallId()
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 thegetCallId()
method).message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- Since:
- 11.27
-
-
Method Detail
-
getCallId
public java.lang.String getCallId()
- Returns:
- the callId
- Since:
- 11.27
-
toString
public java.lang.String toString()
- Overrides:
toString
in classPhoneSystemException
-
-