I noticed `get()` indeed, but the blocking is not ...
# coroutines
n
I noticed
get()
indeed, but the blocking is not what I want. The
exceptionally { }
method does give me a push in the right direction though. For example, the following does what I want (crashing the app):
Copy code
fun test() {
    val doSomething = doSomething()
    doSomething.exceptionally {
        Handler(Looper.getMainLooper()).post{
            throw it
        }
    }
}