SaltProviderError

public enum SaltProviderError : Error
extension SaltProviderError: SAPError

Errors of the Salt Provide

  • Failed to read Salt

    Declaration

    Swift

    case failedToRead
  • Failed to save Salt

    Declaration

    Swift

    case failedToSave
  • Failed to generate Salt

    Declaration

    Swift

    case failedToGenerate
  • Failed to remove Salt

    Declaration

    Swift

    case failedToRemove
  • Failed to create Salt store

    Declaration

    Swift

    case failedToCreateStore
  • Failed to open Salt store

    Declaration

    Swift

    case failedToOpenStore
  • Store already exists

    Declaration

    Swift

    case storeAlreadyExists
  • Store doesn’t exists

    Declaration

    Swift

    case storeDoesntExist
  • 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 }