UploadError

public enum UploadError : SAPError

Collection of possible errors that could occur during the upload.

  • file system related error

    Declaration

    Swift

    case fileSystem(Error)
  • network related error

    Declaration

    Swift

    case network(Error)
  • response / service related error

    Declaration

    Swift

    case invalidResponse(Data?, URLResponse?)
  • the selected store contained no usage records

    Declaration

    Swift

    case emptyStore
  • A textual representation of this instance.

    Declaration

    Swift

    public var description: String { get }
  • A localized message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A textual representation of this instance, suitable for debugging.

    Declaration

    Swift

    public var debugDescription: String { get }