OTVDownloadError

Objective-C

enum OTVDownloadError : NSInteger {}

Swift

enum OTVDownloadError : Int, @unchecked Sendable

ObjectiveC compatible enumeration of the possible errors of a persistence asset.

  • No error

    Declaration

    Objective-C

    OTVDownloadErrorNoError = 0

    Swift

    case noError = 0
  • An unknown or unexpected error occured.

    Declaration

    Objective-C

    OTVDownloadErrorUnknownError = 1

    Swift

    case unknownError = 1
  • An error happens in download task

    Declaration

    Objective-C

    OTVDownloadErrorDownloadTaskError = 2

    Swift

    case downloadTaskError = 2
  • An error happends when requesting the license

    Declaration

    Objective-C

    OTVDownloadErrorLicenseRequestError = 3

    Swift

    case licenseRequestError = 3
  • An error happends when downloading the manifest

    Declaration

    Objective-C

    OTVDownloadErrorManifestDownloadError = 4

    Swift

    case manifestDownloadError = 4
  • An error happends when parsing the manifest

    Declaration

    Objective-C

    OTVDownloadErrorManifestParseError = 5

    Swift

    case manifestParseError = 5
  • An error indicates downloading a LIVE content is not supported

    Declaration

    Objective-C

    OTVDownloadErrorUnsupportedLiveError = 6

    Swift

    case unsupportedLiveError = 6
  • An error indicates there is not enough space on device

    Declaration

    Objective-C

    OTVDownloadErrorInsufficientSpaceError = 7

    Swift

    case insufficientSpaceError = 7