withoutclass
val exceptionHandler = CoroutineExceptionHandler { coroutineContext, throwable -> throwable.printStackTrace() } fun getStuff() { launch(commonPool + exceptionHandler) { getStuff() } }