SudoTelephonyClientError

public enum SudoTelephonyClientError : Error, LocalizedError

List of possible errors thrown by SudoTelephonyClient.

  • Not signed in to the service

    Declaration

    Swift

    case notSignedIn
  • Bad configuration, something went wrong setting this up.

    Declaration

    Swift

    case invalidConfig
  • Authentication failed, meaning the user is not signed in or registered.

    Declaration

    Swift

    case authenticationFailed(Error)
  • Request to the backend failed for some reason.

    Declaration

    Swift

    case requestFailed
  • Internal error that could mean data was not returned or parsed properly.

    Declaration

    Swift

    case internalError
  • Number provisioning Failed

    Declaration

    Swift

    case numberProvisioningFailed
  • Country provided for the request is not supported.

    Declaration

    Swift

    case countryNotSupported(String)
  • Message send failed

    Declaration

    Swift

    case messageSendFailed
  • Message retrieval failed

    Declaration

    Swift

    case getMessageFailed
  • Message subscription failed

    Declaration

    Swift

    case messageSubscriptionFailed
  • Conversation retrieval failed

    Declaration

    Swift

    case getConversationFailed
  • CallRecord retrieval failed

    Declaration

    Swift

    case getCallRecordFailed
  • CallRecord decryption failed

    Declaration

    Swift

    case callRecordDecryptionFailed
  • CallRecord subscription failed

    Declaration

    Swift

    case callRecordSubscriptionFailed
  • Voicemail retrieval failed

    Declaration

    Swift

    case getVoicemailFailed
  • Voicemail decryption failed

    Declaration

    Swift

    case voicemailDecryptionFailed(Error)
  • Voicemail subscription failed

    Declaration

    Swift

    case voicemailSubscriptionFailed(Error?)
  • One or more invalid inputs were passed on the request.

    Declaration

    Swift

    case invalidInput
  • Key Pair failed to be generated for new phone number.

    Declaration

    Swift

    case keyGenerationFailed
  • Key Pair failed to be deleted for phone number.

    Declaration

    Swift

    case keyDeletionFailed
  • Failed to get ownership proof when provisioning a number

    Declaration

    Swift

    case ownershipProofFailed
  • User has no public keys

    Declaration

    Swift

    case noPublicKey
  • Sealed data decryption failed

    Declaration

    Swift

    case sealedDataDecryptionFailed
  • File not found at provided path

    Declaration

    Swift

    case fileNotFound
  • Invalid file format

    Declaration

    Swift

    case invalidFileFormat
  • MMS file upload failed

    Declaration

    Swift

    case fileUploadFailed
  • File download failed

    Declaration

    Swift

    case fileDownloadFailed
  • Message decryption failed

    Declaration

    Swift

    case messageDecryptionFailed
  • Collective size of message media exceeds limit

    Declaration

    Swift

    case messageMediaTooLarge
  • Insufficient entitlements to perform the requested action.

    Declaration

    Swift

    case insufficientEntitlement
  • Invalid GPS or Area Code prefix provided

    Declaration

    Swift

    case invalidSearchError
  • Ownership attestation resulted in unauthorized

    Declaration

    Swift

    case failedOwnershipCheck
  • Exceeded the number of media objects allowed.

    Declaration

    Swift

    case maximumMediaObject
  • Unsupported media type

    Declaration

    Swift

    case unsupportedMediaContentType
  • Service configuration error

    Declaration

    Swift

    case configurationError
  • Unknown Error ocurred

    Declaration

    Swift

    case unknown
  • Declaration

    Swift

    public var errorDescription: String? { get }