``` val exceptionHandler = CoroutineExceptionHandl...
# coroutines
w
Copy code
val exceptionHandler = CoroutineExceptionHandler { coroutineContext, throwable -> throwable.printStackTrace() }

fun getStuff() {
    launch(commonPool + exceptionHandler) {
        getStuff()
    }
}
👍🏽 2