ENUM

StorageError

Contents

public enum StorageError: Error

Storage error responses

Cases

writeError(cause:)

case writeError(cause: Error)

An error occurred while attempting to write to the storage.

The cause provides more detailed information about the error.

readError(cause:)

case readError(cause: Error)

An error occurred while attempting to read from the storage.

The cause provides more detailed information about the error.

deleteError(cause:)

case deleteError(cause: Error)

An error occurred while attempting to delete from the storage.

The cause provides more detailed information about the error.