When you cancel a CoroutineScope or a Job, its Cor...
# coroutines
s
When you cancel a CoroutineScope or a Job, its Coroutines throw a CancellationException when code is suspended, propagating all the way up to the top most CoroutineScope. If you break that chain, you may get into trouble....
2