Error

data class Error(val message: String, val exception: Exception = Exception(UNKNOWN_EXCEPTION)) : CoreEvent

Error events emitted when an exception occurs.

Constructors

Link copied to clipboard
constructor(message: String, exception: Exception = Exception(UNKNOWN_EXCEPTION))

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val exception: Exception

The caught exception.

Link copied to clipboard
val message: String

A simple message describing the exception.