PushStorageError

public enum PushStorageError : Error, LocalizedError, Sendable

Errors specific to Push storage operations.

These errors are thrown by storage implementations when persistence operations fail.

  • A storage operation failed.

    Declaration

    Swift

    case storageFailure(String, Error?)
  • Attempted to store a credential with a duplicate ID.

    Declaration

    Swift

    case duplicateCredential(String)
  • Attempted to store a notification with a duplicate ID.

    Declaration

    Swift

    case duplicateNotification(String)
  • Declaration

    Swift

    public var errorDescription: String? { get }