com.cisco.jtapi.extensions
Interface CiscoJtapiException
public interface CiscoJtapiException
The CiscoJtapiException interface defines CTI error
codes. These are the error codes that may be returned by
CTI requests. All the JTAPI exceptions have been extended to
implement this interface.
The Error codes can be got by casting the exception to CiscoJtapiException
and calling the method getErrorCode().
if e is any exception caught in an application, then try to see
if its an instanceof CiscoJtapiException.
try {
  // some code here
}
catch ( Exception e ) {
  if( e instanceof CiscoJtapiException){
    CiscoJtapiException ce = com.cisco.cti.client.CTIFAILURE.(CiscoJtapiException) e
    int errorCode = com.cisco.cti.client.CTIFAILURE.ce.getErrorCode()   //returns the ErrorCode.
  }
}
|
Method Summary |
int |
getErrorCode()
Returns the errorCode for this exception |
java.lang.String |
getErrorDescription()
This method returns the detail description of the errorCode |
java.lang.String |
getErrorDescription(int errorCode)
Deprecated. instead use String getErrorDescription (); |
java.lang.String |
getErrorName()
This method returns an exception in the string format. |
java.lang.String |
getErrorName(int errorCode)
Deprecated. instead use String getErrorName (); |
UNSPECIFIED
static final int UNSPECIFIED
- The CTI error codes. These are the error codes that may be returned by
CTI requests.
- See Also:
- Constant Field Values
TIMEOUT
static final int TIMEOUT
- See Also:
- Constant Field Values
NO_ACTIVE_DEVICE_FOR_THIRDPARTY
static final int NO_ACTIVE_DEVICE_FOR_THIRDPARTY
- See Also:
- Constant Field Values
EXISTING_FIRSTPARTY
static final int EXISTING_FIRSTPARTY
- See Also:
- Constant Field Values
ILLEGAL_HANDLE
static final int ILLEGAL_HANDLE
- See Also:
- Constant Field Values
UNDEFINED_LINE
static final int UNDEFINED_LINE
- See Also:
- Constant Field Values
ILLEGAL_CALLINGPARTY
static final int ILLEGAL_CALLINGPARTY
- See Also:
- Constant Field Values
CALL_ALREADY_EXISTS
static final int CALL_ALREADY_EXISTS
- See Also:
- Constant Field Values
LINECONTROL_FAILURE
static final int LINECONTROL_FAILURE
- See Also:
- Constant Field Values
ILLEGAL_CALLSTATE
static final int ILLEGAL_CALLSTATE
- See Also:
- Constant Field Values
CALLHANDLE_NOTINCOMINGCALL
static final int CALLHANDLE_NOTINCOMINGCALL
- See Also:
- Constant Field Values
TRANSFERFAILED_DESTINATION_UNALLOCATED
static final int TRANSFERFAILED_DESTINATION_UNALLOCATED
- See Also:
- Constant Field Values
TRANSFERFAILED_DESTINATION_BUSY
static final int TRANSFERFAILED_DESTINATION_BUSY
- See Also:
- Constant Field Values
TRANSFERFAILED
static final int TRANSFERFAILED
- See Also:
- Constant Field Values
HOLDFAILED
static final int HOLDFAILED
- See Also:
- Constant Field Values
RETRIEVEFAILED
static final int RETRIEVEFAILED
- See Also:
- Constant Field Values
DB_NO_MORE_DEVICES
static final int DB_NO_MORE_DEVICES
- See Also:
- Constant Field Values
DEVICE_ALREADY_REGISTERED
static final int DEVICE_ALREADY_REGISTERED
- See Also:
- Constant Field Values
DB_ILLEGAL_DEVICE_TYPE
static final int DB_ILLEGAL_DEVICE_TYPE
- See Also:
- Constant Field Values
DB_ERROR
static final int DB_ERROR
- See Also:
- Constant Field Values
CANNOT_TERMINATE_MEDIA_ON_PHONE
static final int CANNOT_TERMINATE_MEDIA_ON_PHONE
- See Also:
- Constant Field Values
CTIERR_CALL_MANAGER_NOT_AVAILABLE
static final int CTIERR_CALL_MANAGER_NOT_AVAILABLE
- See Also:
- Constant Field Values
CTIERR_ACCESS_TO_DEVICE_DENIED
static final int CTIERR_ACCESS_TO_DEVICE_DENIED
- See Also:
- Constant Field Values
UNKNOWN_GLOBAL_CALL_HANDLE
static final int UNKNOWN_GLOBAL_CALL_HANDLE
- See Also:
- Constant Field Values
DEVICE_NOT_OPEN
static final int DEVICE_NOT_OPEN
- See Also:
- Constant Field Values
ASSOCIATED_LINE_NOT_OPEN
static final int ASSOCIATED_LINE_NOT_OPEN
- See Also:
- Constant Field Values
SSAPI_NOT_REGISTERED
static final int SSAPI_NOT_REGISTERED
- See Also:
- Constant Field Values
REDIRECT_CALL_DOES_NOT_EXIST
static final int REDIRECT_CALL_DOES_NOT_EXIST
- See Also:
- Constant Field Values
DATA_SIZE_LIMIT_EXCEEDED
static final int DATA_SIZE_LIMIT_EXCEEDED
- See Also:
- Constant Field Values
INVALID_RING_OPTION
static final int INVALID_RING_OPTION
- See Also:
- Constant Field Values
CTIERR_APP_SOFTKEYS_ALREADY_CONTROLLED
static final int CTIERR_APP_SOFTKEYS_ALREADY_CONTROLLED
- See Also:
- Constant Field Values
CTIERR_INVALID_DEVICE_NAME
static final int CTIERR_INVALID_DEVICE_NAME
- See Also:
- Constant Field Values
CTIERR_INFORMATION_NOT_AVAILABLE
static final int CTIERR_INFORMATION_NOT_AVAILABLE
- See Also:
- Constant Field Values
CTIERR_MEDIA_RESOURCE_NAME_SIZE_EXCEEDED
static final int CTIERR_MEDIA_RESOURCE_NAME_SIZE_EXCEEDED
- See Also:
- Constant Field Values
CTIERR_APPLICATION_DATA_SIZE_EXCEEDED
static final int CTIERR_APPLICATION_DATA_SIZE_EXCEEDED
- See Also:
- Constant Field Values
CTIERR_INVALID_MEDIA_DEVICE
static final int CTIERR_INVALID_MEDIA_DEVICE
- See Also:
- Constant Field Values
CTIERR_CLOSE_DELAY_NOT_SUPPORTED_WITH_REG_TYPE
static final int CTIERR_CLOSE_DELAY_NOT_SUPPORTED_WITH_REG_TYPE
- See Also:
- Constant Field Values
REDIRECT_CALLINFO_ERR
static final int REDIRECT_CALLINFO_ERR
- See Also:
- Constant Field Values
REDIRECT_ERR
static final int REDIRECT_ERR
- See Also:
- Constant Field Values
REDIRECT_CALL_CALL_TABLE_FULL
static final int REDIRECT_CALL_CALL_TABLE_FULL
- See Also:
- Constant Field Values
REDIRECT_CALL_PROTOCOL_ERROR
static final int REDIRECT_CALL_PROTOCOL_ERROR
- See Also:
- Constant Field Values
REDIRECT_CALL_UNKNOWN_DESTINATION
static final int REDIRECT_CALL_UNKNOWN_DESTINATION
- See Also:
- Constant Field Values
REDIRECT_CALL_DIGIT_ANALYSIS_TIMEOUT
static final int REDIRECT_CALL_DIGIT_ANALYSIS_TIMEOUT
- See Also:
- Constant Field Values
REDIRECT_CALL_MEDIA_CONNECTION_FAILED
static final int REDIRECT_CALL_MEDIA_CONNECTION_FAILED
- See Also:
- Constant Field Values
REDIRECT_CALL_PARTY_TABLE_FULL
static final int REDIRECT_CALL_PARTY_TABLE_FULL
- See Also:
- Constant Field Values
REDIRECT_CALL_ORIGINATOR_ABANDONED
static final int REDIRECT_CALL_ORIGINATOR_ABANDONED
- See Also:
- Constant Field Values
REDIRECT_CALL_UNKNOWN_PARTY
static final int REDIRECT_CALL_UNKNOWN_PARTY
- See Also:
- Constant Field Values
REDIRECT_CALL_INCOMPATIBLE_STATE
static final int REDIRECT_CALL_INCOMPATIBLE_STATE
- See Also:
- Constant Field Values
REDIRECT_CALL_PENDING_REDIRECT_TRANSACTION
static final int REDIRECT_CALL_PENDING_REDIRECT_TRANSACTION
- See Also:
- Constant Field Values
REDIRECT_CALL_UNKNOWN_ERROR
static final int REDIRECT_CALL_UNKNOWN_ERROR
- See Also:
- Constant Field Values
REDIRECT_CALL_NORMAL_CLEARING
static final int REDIRECT_CALL_NORMAL_CLEARING
- See Also:
- Constant Field Values
REDIRECT_CALL_UNRECOGNIZED_MANAGER
static final int REDIRECT_CALL_UNRECOGNIZED_MANAGER
- See Also:
- Constant Field Values
REDIRECT_CALL_DESTINATION_BUSY
static final int REDIRECT_CALL_DESTINATION_BUSY
- See Also:
- Constant Field Values
REDIRECT_CALL_DESTINATION_OUT_OF_ORDER
static final int REDIRECT_CALL_DESTINATION_OUT_OF_ORDER
- See Also:
- Constant Field Values
CANNOT_OPEN_DEVICE
static final int CANNOT_OPEN_DEVICE
- See Also:
- Constant Field Values
TRANSFERFAILED_OUTSTANDING_TRANSFER
static final int TRANSFERFAILED_OUTSTANDING_TRANSFER
- See Also:
- Constant Field Values
TRANSFERFAILED_CALLCONTROL_TIMEOUT
static final int TRANSFERFAILED_CALLCONTROL_TIMEOUT
- See Also:
- Constant Field Values
CALLHANDLE_UNKNOWN_TO_LINECONTROL
static final int CALLHANDLE_UNKNOWN_TO_LINECONTROL
- See Also:
- Constant Field Values
CONFERENCE_FULL
static final int CONFERENCE_FULL
- See Also:
- Constant Field Values
MAX_NUMBER_OF_CTI_CONNECTIONS_REACHED
static final int MAX_NUMBER_OF_CTI_CONNECTIONS_REACHED
- See Also:
- Constant Field Values
CTIERR_CONSULTCALL_ALREADY_OUTSTANDING
static final int CTIERR_CONSULTCALL_ALREADY_OUTSTANDING
- See Also:
- Constant Field Values
NO_CONFERENCE_BRIDGE
static final int NO_CONFERENCE_BRIDGE
- See Also:
- Constant Field Values
INCOMPATIBLE_PROTOCOL_VERSION
static final int INCOMPATIBLE_PROTOCOL_VERSION
- See Also:
- Constant Field Values
UNRECOGNIZABLE_PDU
static final int UNRECOGNIZABLE_PDU
- See Also:
- Constant Field Values
ILLEGAL_MESSAGE_FORMAT
static final int ILLEGAL_MESSAGE_FORMAT
- See Also:
- Constant Field Values
CTIERR_INCOMPATIBLE_AUTOINSTALL_PROTOCOL_VERSION
static final int CTIERR_INCOMPATIBLE_AUTOINSTALL_PROTOCOL_VERSION
- See Also:
- Constant Field Values
CTIERR_INVALID_MESSAGE_LENGTH
static final int CTIERR_INVALID_MESSAGE_LENGTH
- See Also:
- Constant Field Values
CTIERR_INVALID_MESSAGE_HEADER_INFO
static final int CTIERR_INVALID_MESSAGE_HEADER_INFO
- See Also:
- Constant Field Values
CTIERR_MESSAGE_TOO_BIG
static final int CTIERR_MESSAGE_TOO_BIG
- See Also:
- Constant Field Values
CTIERR_INVALID_FILTER_SIZE
static final int CTIERR_INVALID_FILTER_SIZE
- See Also:
- Constant Field Values
DIRECTORY_TEMPORARY_UNAVAILABLE
static final int DIRECTORY_TEMPORARY_UNAVAILABLE
- See Also:
- Constant Field Values
DIRECTORY_LOGIN_NOT_ALLOWED
static final int DIRECTORY_LOGIN_NOT_ALLOWED
- See Also:
- Constant Field Values
DIRECTORY_LOGIN_FAILED
static final int DIRECTORY_LOGIN_FAILED
- See Also:
- Constant Field Values
PROVIDER_NOT_OPEN
static final int PROVIDER_NOT_OPEN
- See Also:
- Constant Field Values
PROVIDER_ALREADY_OPEN
static final int PROVIDER_ALREADY_OPEN
- See Also:
- Constant Field Values
NOT_INITIALIZED
static final int NOT_INITIALIZED
- See Also:
- Constant Field Values
CLUSTER_LINK_FAILURE
static final int CLUSTER_LINK_FAILURE
- See Also:
- Constant Field Values
LINE_INFO_DOES_NOT_EXIST
static final int LINE_INFO_DOES_NOT_EXIST
- See Also:
- Constant Field Values
DIGIT_GENERATION_ALREADY_IN_PROGRESS
static final int DIGIT_GENERATION_ALREADY_IN_PROGRESS
- See Also:
- Constant Field Values
DIGIT_GENERATION_WRONG_CALL_HANDLE
static final int DIGIT_GENERATION_WRONG_CALL_HANDLE
- See Also:
- Constant Field Values
DIGIT_GENERATION_WRONG_CALL_STATE
static final int DIGIT_GENERATION_WRONG_CALL_STATE
- See Also:
- Constant Field Values
DIGIT_GENERATION_CALLSTATE_CHANGED
static final int DIGIT_GENERATION_CALLSTATE_CHANGED
- See Also:
- Constant Field Values
LINE_GREATER_THAN_MAX_LINE
static final int LINE_GREATER_THAN_MAX_LINE
- See Also:
- Constant Field Values
RETRIEVEFAILED_ACTIVE_CALL_ON_LINE
static final int RETRIEVEFAILED_ACTIVE_CALL_ON_LINE
- See Also:
- Constant Field Values
INVALID_LINE_HANDLE
static final int INVALID_LINE_HANDLE
- See Also:
- Constant Field Values
LINE_NOT_PRIMARY
static final int LINE_NOT_PRIMARY
- See Also:
- Constant Field Values
CFWDALL_ALREADY_SET
static final int CFWDALL_ALREADY_SET
- See Also:
- Constant Field Values
CFWDALL_DESTN_INVALID
static final int CFWDALL_DESTN_INVALID
- See Also:
- Constant Field Values
CTIERR_DIRECTORY_LOGIN_TIMEOUT
static final int CTIERR_DIRECTORY_LOGIN_TIMEOUT
- See Also:
- Constant Field Values
CTIERR_LINE_OUT_OF_SERVICE
static final int CTIERR_LINE_OUT_OF_SERVICE
- See Also:
- Constant Field Values
DEVICE_OUT_OF_SERVICE
static final int DEVICE_OUT_OF_SERVICE
- See Also:
- Constant Field Values
MSGWAITING_DESTN_INVALID
static final int MSGWAITING_DESTN_INVALID
- See Also:
- Constant Field Values
DARES_INVALID_REQ_TYPE
static final int DARES_INVALID_REQ_TYPE
- See Also:
- Constant Field Values
CONFERENCE_FAILED
static final int CONFERENCE_FAILED
- See Also:
- Constant Field Values
CONFERENCE_INVALID_PARTICIPANT
static final int CONFERENCE_INVALID_PARTICIPANT
- See Also:
- Constant Field Values
CONFERENCE_ALREADY_PRESENT
static final int CONFERENCE_ALREADY_PRESENT
- See Also:
- Constant Field Values
CONFERENCE_INACTIVE
static final int CONFERENCE_INACTIVE
- See Also:
- Constant Field Values
TRANSFER_INACTIVE
static final int TRANSFER_INACTIVE
- See Also:
- Constant Field Values
CTIERR_REGISTER_FEATURE_ACTIVATION_FAILED
static final int CTIERR_REGISTER_FEATURE_ACTIVATION_FAILED
- See Also:
- Constant Field Values
CTIERR_UNSUPPORTED_CALL_PARK_TYPE
static final int CTIERR_UNSUPPORTED_CALL_PARK_TYPE
- See Also:
- Constant Field Values
CTIERR_CALL_UNPARK_FAILED
static final int CTIERR_CALL_UNPARK_FAILED
- See Also:
- Constant Field Values
CTIERR_INVALID_PARK_DN
static final int CTIERR_INVALID_PARK_DN
- See Also:
- Constant Field Values
CTIERR_INVALID_PARK_REGISTRATION_HANDLE
static final int CTIERR_INVALID_PARK_REGISTRATION_HANDLE
- See Also:
- Constant Field Values
CTIERR_INVALID_MONITOR_DN_TYPE
static final int CTIERR_INVALID_MONITOR_DN_TYPE
- See Also:
- Constant Field Values
CTIERR_CALL_PARK_NO_DN
static final int CTIERR_CALL_PARK_NO_DN
- See Also:
- Constant Field Values
CTIERR_ILLEGAL_DEVICE_TYPE
static final int CTIERR_ILLEGAL_DEVICE_TYPE
- See Also:
- Constant Field Values
CTIERR_CALL_REQUEST_ALREADY_OUTSTANDING
static final int CTIERR_CALL_REQUEST_ALREADY_OUTSTANDING
- See Also:
- Constant Field Values
CTIERR_CONSULT_CALL_FAILURE
static final int CTIERR_CONSULT_CALL_FAILURE
- See Also:
- Constant Field Values
CTIERR_FEATURE_ALREADY_REGISTERED
static final int CTIERR_FEATURE_ALREADY_REGISTERED
- See Also:
- Constant Field Values
CTIERR_STATION_SHUT_DOWN
static final int CTIERR_STATION_SHUT_DOWN
- See Also:
- Constant Field Values
CTIERR_INTERNAL_FAILURE
static final int CTIERR_INTERNAL_FAILURE
- See Also:
- Constant Field Values
CTIERR_MEDIAREGISTRATIONTYPE_DO_NOT_MATCH
static final int CTIERR_MEDIAREGISTRATIONTYPE_DO_NOT_MATCH
- See Also:
- Constant Field Values
CTIERR_OPERATION_FAILED_QUIETCLEAR
static final int CTIERR_OPERATION_FAILED_QUIETCLEAR
- See Also:
- Constant Field Values
CTIERR_FEATURE_DATA_REJECT
static final int CTIERR_FEATURE_DATA_REJECT
- See Also:
- Constant Field Values
CALL_DROPPED
static final int CALL_DROPPED
- See Also:
- Constant Field Values
CTIERR_INVALID_DTMFDIGITS
static final int CTIERR_INVALID_DTMFDIGITS
- See Also:
- Constant Field Values
CTIERR_INCORRECT_MEDIA_CAPABILITY
static final int CTIERR_INCORRECT_MEDIA_CAPABILITY
- See Also:
- Constant Field Values
COMMAND_NOT_IMPLEMENTED_ON_DEVICE
static final int COMMAND_NOT_IMPLEMENTED_ON_DEVICE
- See Also:
- Constant Field Values
CTIERR_DEVICE_SHUTTING_DOWN
static final int CTIERR_DEVICE_SHUTTING_DOWN
- See Also:
- Constant Field Values
CTIERR_INVALID_MEDIA_RESOURCE_ID
static final int CTIERR_INVALID_MEDIA_RESOURCE_ID
- See Also:
- Constant Field Values
CTIERR_UNKNOWN_EXCEPTION
static final int CTIERR_UNKNOWN_EXCEPTION
- See Also:
- Constant Field Values
CTIERR_OPERATION_NOT_ALLOWED
static final int CTIERR_OPERATION_NOT_ALLOWED
- See Also:
- Constant Field Values
CTIERR_INVALID_MEDIA_PARAMETER
static final int CTIERR_INVALID_MEDIA_PARAMETER
- See Also:
- Constant Field Values
CTIERR_MEDIA_CAPABILITY_MISMATCH
static final int CTIERR_MEDIA_CAPABILITY_MISMATCH
- See Also:
- Constant Field Values
CTIERR_DEVICE_ALREADY_OPENED
static final int CTIERR_DEVICE_ALREADY_OPENED
- See Also:
- Constant Field Values
CTIERR_DEVICE_NOT_OPENED_YET
static final int CTIERR_DEVICE_NOT_OPENED_YET
- See Also:
- Constant Field Values
CTIERR_MEDIA_ALREADY_TERMINATED_NONE
static final int CTIERR_MEDIA_ALREADY_TERMINATED_NONE
- See Also:
- Constant Field Values
CTIERR_MEDIA_ALREADY_TERMINATED_STATIC
static final int CTIERR_MEDIA_ALREADY_TERMINATED_STATIC
- See Also:
- Constant Field Values
CTIERR_MEDIA_ALREADY_TERMINATED_DYNAMIC
static final int CTIERR_MEDIA_ALREADY_TERMINATED_DYNAMIC
- See Also:
- Constant Field Values
CTIERR_OWNER_NOT_ALIVE
static final int CTIERR_OWNER_NOT_ALIVE
- See Also:
- Constant Field Values
CTIERR_DEVICE_RESTRICTED
static final int CTIERR_DEVICE_RESTRICTED
- See Also:
- Constant Field Values
CTIERR_LINE_RESTRICTED
static final int CTIERR_LINE_RESTRICTED
- See Also:
- Constant Field Values
CTIERR_RESOURCE_NOT_AVAILABLE
static final int CTIERR_RESOURCE_NOT_AVAILABLE
- See Also:
- Constant Field Values
CTIERR_CONFERENCE_ALREADY_EXISTED
static final int CTIERR_CONFERENCE_ALREADY_EXISTED
- See Also:
- Constant Field Values
CTIERR_CONFERENCE_NOT_EXISTED
static final int CTIERR_CONFERENCE_NOT_EXISTED
- See Also:
- Constant Field Values
CTIERR_CALL_NOT_EXISTED
static final int CTIERR_CALL_NOT_EXISTED
- See Also:
- Constant Field Values
CTIERR_INVALID_PARAMETER
static final int CTIERR_INVALID_PARAMETER
- See Also:
- Constant Field Values
CTIERR_MORE_ACTIVE_CALLS_THAN_RESERVED
static final int CTIERR_MORE_ACTIVE_CALLS_THAN_RESERVED
- See Also:
- Constant Field Values
CTIERR_INVALID_RESOURCE_TYPE
static final int CTIERR_INVALID_RESOURCE_TYPE
- See Also:
- Constant Field Values
CTIERR_DUPLICATE_CALL_REFERENCE
static final int CTIERR_DUPLICATE_CALL_REFERENCE
- See Also:
- Constant Field Values
CTIERR_NOT_PRESERVED_CALL
static final int CTIERR_NOT_PRESERVED_CALL
- See Also:
- Constant Field Values
CTIERR_NO_EXISTING_CONFERENCE
static final int CTIERR_NO_EXISTING_CONFERENCE
- See Also:
- Constant Field Values
CTIERR_NO_RESPONSE_FROM_MP
static final int CTIERR_NO_RESPONSE_FROM_MP
- See Also:
- Constant Field Values
CTIERR_SYSTEM_ERROR
static final int CTIERR_SYSTEM_ERROR
- See Also:
- Constant Field Values
CTIERR_PENDING_ACCEPT_OR_ANSWER_REQUEST
static final int CTIERR_PENDING_ACCEPT_OR_ANSWER_REQUEST
- See Also:
- Constant Field Values
CTIERR_INVALID_MEDIA_PROCESS
static final int CTIERR_INVALID_MEDIA_PROCESS
- See Also:
- Constant Field Values
CTIERR_CAPABILITIES_DO_NOT_MATCH
static final int CTIERR_CAPABILITIES_DO_NOT_MATCH
- See Also:
- Constant Field Values
CTIERR_DEVICE_OWNER_ALIVE_TIMER_STARTED
static final int CTIERR_DEVICE_OWNER_ALIVE_TIMER_STARTED
- See Also:
- Constant Field Values
CTIERR_MAXCALL_LIMIT_REACHED
static final int CTIERR_MAXCALL_LIMIT_REACHED
- See Also:
- Constant Field Values
CTIERR_CTIHANDLER_PROCESS_CREATION_FAILED
static final int CTIERR_CTIHANDLER_PROCESS_CREATION_FAILED
- See Also:
- Constant Field Values
CTIERR_REDIRECT_UNAUTHORIZED_COMMAND_USAGE
static final int CTIERR_REDIRECT_UNAUTHORIZED_COMMAND_USAGE
- See Also:
- Constant Field Values
CTIERR_NO_EXISTING_CALLS
static final int CTIERR_NO_EXISTING_CALLS
- See Also:
- Constant Field Values
CTIERR_FAC_CMC_REASON_FAC_NEEDED
static final int CTIERR_FAC_CMC_REASON_FAC_NEEDED
- See Also:
- Constant Field Values
CTIERR_FAC_CMC_REASON_CMC_NEEDED
static final int CTIERR_FAC_CMC_REASON_CMC_NEEDED
- See Also:
- Constant Field Values
CTIERR_FAC_CMC_REASON_FAC_CMC_NEEDED
static final int CTIERR_FAC_CMC_REASON_FAC_CMC_NEEDED
- See Also:
- Constant Field Values
CTIERR_FAC_CMC_REASON_FAC_INVALID
static final int CTIERR_FAC_CMC_REASON_FAC_INVALID
- See Also:
- Constant Field Values
CTIERR_FAC_CMC_REASON_CMC_INVALID
static final int CTIERR_FAC_CMC_REASON_CMC_INVALID
- See Also:
- Constant Field Values
DESTINATION_UNKNOWN
static final int DESTINATION_UNKNOWN
- See Also:
- Constant Field Values
DESTINATION_BUSY
static final int DESTINATION_BUSY
- See Also:
- Constant Field Values
PROVIDER_CLOSED
static final int PROVIDER_CLOSED
- See Also:
- Constant Field Values
PROTOCOL_TIMEOUT
static final int PROTOCOL_TIMEOUT
- See Also:
- Constant Field Values
CTIERR_REGISTER_FEATURE_PROVIDER_NOT_REGISTERED
static final int CTIERR_REGISTER_FEATURE_PROVIDER_NOT_REGISTERED
- See Also:
- Constant Field Values
CTIERR_REGISTER_FEATURE_APP_ALREADY_REGISTERED
static final int CTIERR_REGISTER_FEATURE_APP_ALREADY_REGISTERED
- See Also:
- Constant Field Values
CTIERR_FEATURE_SELECT_FAILED
static final int CTIERR_FEATURE_SELECT_FAILED
- See Also:
- Constant Field Values
CTIERR_UNSUPPORTED_CFWD_TYPE
static final int CTIERR_UNSUPPORTED_CFWD_TYPE
- See Also:
- Constant Field Values
CTIERR_CRYPTO_CAPABILITY_MISMATCH
static final int CTIERR_CRYPTO_CAPABILITY_MISMATCH
- See Also:
- Constant Field Values
CTIERR_OUT_OF_BANDWIDTH
static final int CTIERR_OUT_OF_BANDWIDTH
- See Also:
- Constant Field Values
CTIERR_UDP_PASS_THROUGH_NOT_SUPPORTED
static final int CTIERR_UDP_PASS_THROUGH_NOT_SUPPORTED
- See Also:
- Constant Field Values
CTIERR_DB_INITIALIZATION_ERROR
static final int CTIERR_DB_INITIALIZATION_ERROR
- See Also:
- Constant Field Values
CTIERR_INTERCOM_SPEEDDIAL_ALREADY_SET
static final int CTIERR_INTERCOM_SPEEDDIAL_ALREADY_SET
- See Also:
- Constant Field Values
CTIERR_INTERCOM_SPEEDDIAL_DESTN_INVALID
static final int CTIERR_INTERCOM_SPEEDDIAL_DESTN_INVALID
- See Also:
- Constant Field Values
CTIERR_INTERCOM_TALKBACK_FAILURE
static final int CTIERR_INTERCOM_TALKBACK_FAILURE
- See Also:
- Constant Field Values
CTIERR_DEVICE_REGISTRATION_FAILED_NOT_SUPPORTED_MEDIATYPE
static final int CTIERR_DEVICE_REGISTRATION_FAILED_NOT_SUPPORTED_MEDIATYPE
- See Also:
- Constant Field Values
CTIERR_BIB_RESOURCE_NOT_AVAILABLE
static final int CTIERR_BIB_RESOURCE_NOT_AVAILABLE
- See Also:
- Constant Field Values
CTIERR_INVALID_CALLID
static final int CTIERR_INVALID_CALLID
- See Also:
- Constant Field Values
CTIERR_INVALID_MONITOR_DESTN
static final int CTIERR_INVALID_MONITOR_DESTN
- See Also:
- Constant Field Values
CTIERR_PENDING_START_MONITORING_REQUEST
static final int CTIERR_PENDING_START_MONITORING_REQUEST
- See Also:
- Constant Field Values
CTIERR_START_MONITORING_FAILED
static final int CTIERR_START_MONITORING_FAILED
- See Also:
- Constant Field Values
CTIERR_PENDING_START_RECORDING_REQUEST
static final int CTIERR_PENDING_START_RECORDING_REQUEST
- See Also:
- Constant Field Values
CTIERR_PENDING_STOP_RECORDING_REQUEST
static final int CTIERR_PENDING_STOP_RECORDING_REQUEST
- See Also:
- Constant Field Values
CTIERR_START_RECORDING_FAILED
static final int CTIERR_START_RECORDING_FAILED
- See Also:
- Constant Field Values
CTIERR_RECORDING_ALREADY_INPROGRESS
static final int CTIERR_RECORDING_ALREADY_INPROGRESS
- See Also:
- Constant Field Values
CTIERR_NO_RECORDING_SESSION
static final int CTIERR_NO_RECORDING_SESSION
- See Also:
- Constant Field Values
CTIERR_RECORDING_SESSION_INACTIVE
static final int CTIERR_RECORDING_SESSION_INACTIVE
- See Also:
- Constant Field Values
CTIERR_RECORDING_CONFIG_NOT_MATCHING
static final int CTIERR_RECORDING_CONFIG_NOT_MATCHING
- See Also:
- Constant Field Values
CTIERR_BIB_NOT_CONFIGURED
static final int CTIERR_BIB_NOT_CONFIGURED
- See Also:
- Constant Field Values
CTIERR_INVALID_MONITORMODE
static final int CTIERR_INVALID_MONITORMODE
- See Also:
- Constant Field Values
CTIERR_USER_NOT_AUTH_FOR_SECURITY
static final int CTIERR_USER_NOT_AUTH_FOR_SECURITY
- See Also:
- Constant Field Values
CTIERR_CONNECTION_ON_INVALID_PORT
static final int CTIERR_CONNECTION_ON_INVALID_PORT
- See Also:
- Constant Field Values
CTIERR_INTERCOM_SPEEDDIAL_ALREADY_CONFIGURED
static final int CTIERR_INTERCOM_SPEEDDIAL_ALREADY_CONFIGURED
- See Also:
- Constant Field Values
CTIERR_INTERCOM_TALKBACK_ALREADY_PENDING
static final int CTIERR_INTERCOM_TALKBACK_ALREADY_PENDING
- See Also:
- Constant Field Values
CTIERR_PRIMARY_CALL_INVALID
static final int CTIERR_PRIMARY_CALL_INVALID
- See Also:
- Constant Field Values
CTIERR_PRIMARY_CALL_STATE_INVALID
static final int CTIERR_PRIMARY_CALL_STATE_INVALID
- See Also:
- Constant Field Values
getErrorCode
int getErrorCode()
- Returns the errorCode for this exception
- Returns:
- errorCode in an integer representation
getErrorName
java.lang.String getErrorName(int errorCode)
- Deprecated. instead use String getErrorName ();
- This method will return an exception in the string format.
- Returns:
- String representation of the error code
getErrorName
java.lang.String getErrorName()
- This method returns an exception in the string format.
- Returns:
- String representation of the error code
getErrorDescription
java.lang.String getErrorDescription(int errorCode)
- Deprecated. instead use String getErrorDescription ();
- This method returns the detail description of the errorCode
- Returns:
- String detail description of the errorCode
getErrorDescription
java.lang.String getErrorDescription()
- This method returns the detail description of the errorCode
- Returns:
- String detail description of the errorCode
|