Companion

Properties

Link copied to clipboard

Instance that swallows (ignores) the UncaughtException.

Link copied to clipboard

Instance that prints UncaughtException stack trace to stderr.

Link copied to clipboard

Instance that automatically throws UncaughtException

Functions

Link copied to clipboard
@JvmStatic
inline fun UncaughtException.Handler?.tryCatch2(context: Any, block: () -> Unit)

Helper for wrapping external function calls in order to redirect any uncaught exceptions.

Link copied to clipboard
@JvmStatic
@JvmName(name = "fromCoroutineContextOrNull")
fun CoroutineContext.uncaughtExceptionHandlerOrNull(): UncaughtException.Handler?

Retrieves the Handler from CoroutineContext if present.

Link copied to clipboard

Wraps an existing handler with suppression such that any invocation of tryCatch2 within block lambda is combined into a single UncaughtException, which is then propagated to the current handler (if there even was an UncaughtException).