SAPcpmsThemeManagerError

public enum SAPcpmsThemeManagerError : Error
extension SAPcpmsThemeManagerError: SAPError

Error types that can be thrown by Theme Manager

  • Connection to the server failed.

    Declaration

    Swift

    case network
  • Status code of response is not the expected.

    Declaration

    Swift

    case invalidHTTPStatus(statusCode: Int)
  • The received zip file couldn’t be unzipped.

    Declaration

    Swift

    case invalidArchiveFile
  • No theme is configured for the app.

    Declaration

    Swift

    case themeConfigurationNotFound
  • The theme.nss file is not present in the ThemeManager folder

    Declaration

    Swift

    case themeFileNotFound
  • error in adding queryItems to URL

    Declaration

    Swift

    case urlComponentError
  • A localized message description.

    Declaration

    Swift

    public var description: String { get }
  • A localized message describing the debug information.

    Declaration

    Swift

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

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A localized message describing the reason for the failure.

    Declaration

    Swift

    public var failureReason: String? { get }