tryCatch2

@JvmStatic
inline fun UncaughtException.Handler?.tryCatch2(context: Any, block: () -> Unit)(source)

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

For example, when notifying attached TorEvent.Observer and one does not properly handle its exceptions, instead of it causing the entire program to crash, an UncaughtException is redirected to Handler.

NOTE: If Handler is null, Handler.THROW is used.

Parameters

context

Contextual information about where/what block is to include in the UncaughtException

block

the thing to do that may or may not throw an exception.

See also

io.matthewnelson.kmp.tor.runtime.RuntimeEvent.ERROR

Throws

if and only if block throws exception, and provided Handler chooses to throw it.