thana
09/02/2019, 2:22 PMfun
that creates a CoroutineExceptionHandler
. when i do launch(exceptionHandler()){throw RuntimeException()}
it gets called but with runBlocking
the exception is not caught. is that expected behavior?Dominaezzz
09/02/2019, 2:41 PMrunBlocking
has to return a value.thana
09/02/2019, 2:46 PMDominaezzz
09/02/2019, 2:57 PMCoroutineExceptionHandler
.thana
09/02/2019, 3:08 PMrunBlocking
. Thank you!