If I catch a `CancellationException` should I reth...
# coroutines
e
If I catch a
CancellationException
should I rethrow it?
d
Generally speaking yes. There might be some cases where you want to handle (not swallow) it but can't think of one right now.
👍 1