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 = 0x01Swift
case notAuthenticatedErrorCode = 1 -
An authentication error occurred.
Declaration
Objective-C
BCXAuthenticationErrorCode = 0x02Swift
case authenticationErrorCode = 2 -
Trying to create a call, while another is in progress.
Declaration
Objective-C
BCXSimultaneousCallErrorCode = 0x03Swift
case simultaneousCallErrorCode = 3 -
A connection error occurred.
Declaration
Objective-C
BCXConnectionErrorCode = 0x04Swift
case connectionErrorCode = 4 -
Connection has been lost.
Declaration
Objective-C
BCXConnectionLostErrorCode = 0x05Swift
case connectionLostErrorCode = 5 -
Currently not connected with Bandyer.
Declaration
Objective-C
BCXNotConnectedErrorCode = 0x06Swift
case notConnectedErrorCode = 6 -
A request timed out.
Declaration
Objective-C
BCXRequestTimedOutErrorCode = 0x07Swift
case requestTimedOutErrorCode = 7 -
A malformed request has been received.
Declaration
Objective-C
BCXMalformedResponseErrorCode = 0x08Swift
case malformedResponseErrorCode = 8 -
An error occurred while dialing.
Declaration
Objective-C
BCXDialErrorErrorCode = 0x09Swift
case dialErrorErrorCode = 9 -
An error occurred while answering.
Declaration
Objective-C
BCXAnswerErrorErrorCode = 0x0ASwift
case answerErrorErrorCode = 10 -
An error occurred while declining.
Declaration
Objective-C
BCXDeclineErrorErrorCode = 0x0BSwift
case declineErrorErrorCode = 11 -
An error occurred while hanging up.
Declaration
Objective-C
BCXHangUpErrorErrorCode = 0x0CSwift
case hangUpErrorErrorCode = 12 -
An error occurred while joining a call with url.
Declaration
Objective-C
BCXJoinUrlErrorCode = 0x0DSwift
case joinUrlErrorCode = 13 -
An error occurred while parsing notification payload.
Declaration
Objective-C
BCXInvalidNotificationPayloadErrorCode = 0x0ESwift
case invalidNotificationPayloadErrorCode = 14 -
Another action of the same type is being performed already.
Declaration
Objective-C
BCXAlreadyHandlingActionErrorCode = 0x0FSwift
case alreadyHandlingActionErrorCode = 15 -
An invalid operation has been performed.
Declaration
Objective-C
BCXInvalidOperationErrorCode = 0x10Swift
case invalidOperationErrorCode = 16 -
The system has been asked to perform a not supported action.
Declaration
Objective-C
BCXNotSupportedActionErrorCode = 0x11Swift
case notSupportedActionErrorCode = 17 -
The system has been asked to perform an action on an unknown call.
Declaration
Objective-C
BCXUnknownCallUUIDErrorCode = 0x12Swift
case unknownCallUUIDErrorCode = 18 -
An audio upgradable call could not be upgraded.
Declaration
Objective-C
BCXCannotUpgradeToVideoErrorCode = 0x13Swift
case cannotUpgradeToVideoErrorCode = 19 -
An unexpected response has been received from the server.
Declaration
Objective-C
BCXUnexpectedResponseErrorCode = 0x14Swift
case unexpectedResponseErrorCode = 20 -
An handle provider did not provide a valid handle.
Declaration
Objective-C
BCXInvalidHandleErrorCode = 0x15Swift
case invalidHandleErrorCode = 21 -
An invalid call invite has been received.
Declaration
Objective-C
BCXInvalidInviteErrorCode = 0x16Swift
case invalidInviteErrorCode = 22 -
An invalid call has been created.
Declaration
Objective-C
BCXMalformedCallErrorCode = 0x17Swift
case malformedCallErrorCode = 23 -
There is no an on going call on which verify user.
Declaration
Objective-C
BCXCouldNotFindAnOnGoingCallErrorCode = 0x18Swift
case couldNotFindAnOnGoingCallErrorCode = 24 -
There is another call on which verify user.
Declaration
Objective-C
BCXAnotherCallOngoingErrorCode = 0x19Swift
case anotherCallOngoingErrorCode = 25 -
The current call is not connected.
Declaration
Objective-C
BCXCallNotConnectedErrorCode = 0x1ASwift
case callNotConnectedErrorCode = 26 -
A generic error occurred.
Declaration
Objective-C
BCXGenericErrorErrorCode = 0xFFSwift
case genericErrorErrorCode = 255
View on GitHub
BCXErrorCode Enumeration Reference