CatchThrowHost

A host to manage the caught errors of a key.

See also

Inheritors

Types

Link copied to clipboard

A noop implementation of CatchThrowHost.

Properties

Link copied to clipboard
abstract val keys: Set<Any>

Returns the set of keys that have caught errors.

Functions

Link copied to clipboard
abstract operator fun get(key: Any): Throwable?

Returns the caught error of the key.

Link copied to clipboard
abstract fun remove(key: Any)

Removes the caught error of the key.

Link copied to clipboard
abstract operator fun set(key: Any, error: Throwable)

Sets the caught error of the key.