If I wrap the `withTimeout` in a `try` and in the ...
# coroutines
t
If I wrap the
withTimeout
in a
try
and in the
catch
I re-throw using
throw IllegalStateException(e)
then I get the
IllegalStateException
as expected. Is that the intended behavior? It was a bit confusing for me not to see the
TimeoutCancellationException
using the above code snippet.