What is the reason behind that `CancellationExcept...
# coroutines
a
What is the reason behind that
CancellationException
does not cancel the parent
Job
?
e
It is considered a normal termination, so that a parent can cancel its children without cancelling itself.
🙏 3