UnknownError

abstract class UnknownError constructor(message: String? = null, cause: Throwable? = null) : UnknownPrismError(source)

A class representing an unknown error if the error received does not conform to the KnownPrismError, it will be classified as an UnknownPrismError.

See also

Inheritors

Constructors

Link copied to clipboard
constructor(message: String? = null, cause: Throwable? = null)

Types

Link copied to clipboard
class SomethingWentWrongError constructor(message: String? = null, cause: Throwable? = null) : UnknownError

A class representing an error that occurs when something goes wrong in the SDK.

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open override val code: Int?
Link copied to clipboard
open override val errorDescription: String?
Link copied to clipboard
open val message: String?
Link copied to clipboard
open override val underlyingErrors: Array<Error>?