WebexError
public enum WebexError : Error
extension WebexError: LocalizedError
The enumeration of error types in Cisco Webex iOS SDK.
Since
1.2.0-
A service request to Cisco Webex cloud has failed.
Declaration
Swift
case serviceFailed(code: Int = -7000, reason: String)
-
The
Phone
has not been registered.Declaration
Swift
case unregistered
-
The media requires H.264 codec. Since the user decline the H.264 licesnse.
Declaration
Swift
case requireH264
-
The call was interrupted because the user jumped to view the content of the H.264 licesnse.
Since
since 2.6.0Declaration
Swift
case interruptedByViewingH264License
-
The DTMF is invalid.
Declaration
Swift
case invalidDTMF
-
The DTMF is unsupported.
Declaration
Swift
case unsupportedDTMF
-
The service request is illegal.
Declaration
Swift
case illegalOperation(reason: String)
-
The service is in an illegal status.
Declaration
Swift
case illegalStatus(reason: String)
-
The authentication is failed.
Since
since 1.4.0Declaration
Swift
case noAuth
-
The host pin or meeting password is required while dialing.
Since
since 2.6.0Declaration
Swift
case requireHostPinOrMeetingPassword(reason: String)
-
Details of the error.
Declaration
Swift
public var errorDescription: String? { get }