BCXErrorCode
Objective-C
enum BCXErrorCode {}
Swift
enum BCXErrorCode : Int
An enumeration of the possible error codes encountered when an error occurs.
-
An error indicating that the operation trying to be performed requires authentication with Bandyer platform.
Declaration
Objective-C
BCXNotAuthenticatedErrorCode = 0x01
Swift
case notAuthenticatedErrorCode = 1
-
An authentication error occurred.
Declaration
Objective-C
BCXAuthenticationErrorCode = 0x02
Swift
case authenticationErrorCode = 2
-
Trying to create a call, while another is in progress.
Declaration
Objective-C
BCXSimultaneousCallErrorCode = 0x03
Swift
case simultaneousCallErrorCode = 3
-
A connection error occurred.
Declaration
Objective-C
BCXConnectionErrorCode = 0x04
Swift
case connectionErrorCode = 4
-
Connection has been lost.
Declaration
Objective-C
BCXConnectionLostErrorCode = 0x05
Swift
case connectionLostErrorCode = 5
-
Currently not connected with Bandyer.
Declaration
Objective-C
BCXNotConnectedErrorCode = 0x06
Swift
case notConnectedErrorCode = 6
-
A request timed out.
Declaration
Objective-C
BCXRequestTimedOutErrorCode = 0x07
Swift
case requestTimedOutErrorCode = 7
-
A malformed request has been received.
Declaration
Objective-C
BCXMalformedResponseErrorCode = 0x08
Swift
case malformedResponseErrorCode = 8
-
An error occurred while dialing.
Declaration
Objective-C
BCXDialErrorErrorCode = 0x09
Swift
case dialErrorErrorCode = 9
-
An error occurred while answering.
Declaration
Objective-C
BCXAnswerErrorErrorCode = 0x0A
Swift
case answerErrorErrorCode = 10
-
An error occurred while declining.
Declaration
Objective-C
BCXDeclineErrorErrorCode = 0x0B
Swift
case declineErrorErrorCode = 11
-
An error occurred while hanging up.
Declaration
Objective-C
BCXHangUpErrorErrorCode = 0x0C
Swift
case hangUpErrorErrorCode = 12
-
An error occurred while joining a call with url.
Declaration
Objective-C
BCXJoinUrlErrorCode = 0x0D
Swift
case joinUrlErrorCode = 13
-
An error occurred while parsing notification payload.
Declaration
Objective-C
BCXInvalidNotificationPayloadErrorCode = 0x0E
Swift
case invalidNotificationPayloadErrorCode = 14
-
Another action of the same type is being performed already.
Declaration
Objective-C
BCXAlreadyHandlingActionErrorCode = 0x0F
Swift
case alreadyHandlingActionErrorCode = 15
-
An invalid operation has been performed.
Declaration
Objective-C
BCXInvalidOperationErrorCode = 0x10
Swift
case invalidOperationErrorCode = 16
-
The system has been asked to perform a not supported action.
Declaration
Objective-C
BCXNotSupportedActionErrorCode = 0x11
Swift
case notSupportedActionErrorCode = 17
-
The system has been asked to perform an action on an unknown call.
Declaration
Objective-C
BCXUnknownCallUUIDErrorCode = 0x12
Swift
case unknownCallUUIDErrorCode = 18
-
An audio upgradable call could not be upgraded.
Declaration
Objective-C
BCXCannotUpgradeToVideoErrorCode = 0x13
Swift
case cannotUpgradeToVideoErrorCode = 19
-
An unexpected response has been received from the server.
Declaration
Objective-C
BCXUnexpectedResponseErrorCode = 0x14
Swift
case unexpectedResponseErrorCode = 20
-
An handle provider did not provide a valid handle.
Declaration
Objective-C
BCXInvalidHandleErrorCode = 0x15
Swift
case invalidHandleErrorCode = 21
-
An invalid call invite has been received.
Declaration
Objective-C
BCXInvalidInviteErrorCode = 0x16
Swift
case invalidInviteErrorCode = 22
-
An invalid call has been created.
Declaration
Objective-C
BCXMalformedCallErrorCode = 0x17
Swift
case malformedCallErrorCode = 23
-
There is no an on going call on which verify user.
Declaration
Objective-C
BCXCouldNotFindAnOnGoingCallErrorCode = 0x18
Swift
case couldNotFindAnOnGoingCallErrorCode = 24
-
There is another call on which verify user.
Declaration
Objective-C
BCXAnotherCallOngoingErrorCode = 0x19
Swift
case anotherCallOngoingErrorCode = 25
-
The current call is not connected.
Declaration
Objective-C
BCXCallNotConnectedErrorCode = 0x1A
Swift
case callNotConnectedErrorCode = 26
-
A generic error occurred.
Declaration
Objective-C
BCXGenericErrorErrorCode = 0xFF
Swift
case genericErrorErrorCode = 255