When you show the exception from a `catch` block i...
# coroutines
f
When you show the exception from a
catch
block in the UI, how do you avoid showing CancellationExceptions? Do you have to add an if check?
z
You can catch the cancellation exception first and rethrow it, then catch more general exceptions after.
g
we have universlal error handler, which knows how to handle cancellation (ignore and rethrow it)