CipherError

public enum CipherError : SAPError

Set of possible Cipher errors

  • Internal error from one of the underlying components

    Declaration

    Swift

    case `internal`(error: NSError)
  • The provided Data has invalid structure

    Declaration

    Swift

    case invalidStructure(detail: String)
  • A textual representation of this instance.

    Declaration

    Swift

    public var description: String { get }
  • A textual representation of this instance.

    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 }