hey guys. i have a question (which might be rather...
# coroutines
b
hey guys. i have a question (which might be rather stupid). why does this test does not throw a TimeoutCancelationException?
l
@bitkid Because `CancellationException`s (including subclasses) are eaten by coroutine launchers like
runBlocking
and
launch
since they are a proper way to gently cancel a coroutine. Other exception types are not caught by the coroutine launcher.