Is it acceptable to use `withContext(CoroutineExce...
# coroutines
a
Is it acceptable to use
withContext(CoroutineExceptionHandler { … }) { … }
, or are exception handlers only usable in
launch
and
async
?
c
If it is a coroutine, why not?
t
I don't think this will work. AFAIK `CoroutineExceptionHandler`s are only effective when applied on top level coroutines.