StylePackError

public enum StylePackError : LocalizedError, CoreErrorRepresentable, Equatable

Describes the reason for a style package download request failure.

  • The operation was canceled.

    Declaration

    Swift

    case canceled(String)
  • Style package does not exist.

    Declaration

    Swift

    case doesNotExist(String)
  • There is no available space to store the resources.

    Declaration

    Swift

    case diskFull(String)
  • Some other failure reason.

    Declaration

    Swift

    case other(String)
  • Declaration

    Swift

    public var errorDescription: String? { get }