UnknownError

data class UnknownError(val code: Int, val description: String) : SecureLocalStorageError

Represents an unknown error that occurred during an operation in the secure local storage.

This error is used when the specific nature of the error is not identified. It includes an error code and a description providing additional details about the failure.

Constructors

Link copied to clipboard
constructor(code: Int, description: String)

Properties

Link copied to clipboard
val code: Int

The error code associated with the unknown error.

Link copied to clipboard

A descriptive message detailing the unknown error.

Link copied to clipboard