https://kotlinlang.org logo
e

elizarov

10/10/2017, 3:12 PM
@Paul Woitaschek How to you envision that? Where this exception shall be thrown? When you
launch
, caller continues to execute on its own. You can use
val d = async { ... }
and then when you do
d.await()
later on, it will throw the exception that coroutine had crashed with.