KeychainStorageError

public enum KeychainStorageError : Error
extension KeychainStorageError: SAPError

Errors of the Keychain Storage

  • Failed to read data from keychain

    Declaration

    Swift

    case failedToRead(osstatus: OSStatus)
  • Failed to save data to keychain

    Declaration

    Swift

    case failedToSave(osstatus: OSStatus)
  • Failed to remove data from keychain

    Declaration

    Swift

    case failedToRemove(osstatus: OSStatus)
  • Store already exists

    Declaration

    Swift

    case storeAlreadyExists
  • Store doesn’t exists

    Declaration

    Swift

    case storeDoesntExist
  • Store name is not UTF-8 String

    Declaration

    Swift

    case storeNameIsntUTF8Encoded
  • 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 }
  • A localized message describing the reason for the failure.

    Declaration

    Swift

    public var failureReason: String? { get }