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.0

    Declaration

    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.0

    Declaration

    Swift

    case noAuth
  • The host pin or meeting password is required while dialling.

    Since

    since 2.6.0

    Declaration

    Swift

    case requireHostPinOrMeetingPassword(reason: String)
  • The failure reason for the API

    Since

    since 3.0.0

    Declaration

    Swift

    case failed(reason: String)
  • The host pin or meeting password is invalid.

    Since

    since 3.7.0

    Declaration

    Swift

    case invalidPassword(reason: String)
  • The captcha is required.

    Since

    since 3.7.0

    Declaration

    Swift

    case captchaRequired(captcha: Phone.Captcha)
  • The captcha entered is invalid.

    Since

    since 3.8.0

    Declaration

    Swift

    case invalidPasswordOrHostKeyWithCaptcha(captcha: Phone.Captcha)
  • Details of the error.

    Declaration

    Swift

    public var errorDescription: String? { get }
  • Undocumented

    Declaration

    Swift

    public var captcha: Phone.Captcha? { get }