Hi, is there a reason why I am seeing multiple
CancellationException
s related to coroutines? First, there is
kotlin.coroutines.cancellation.CancellationException
, which is part of
kotlin-stdlib:1.6.21
and there is also
kotlinx.coroutines.CancellationException
which comes from
kotlinx-coroutines-core-jvm:1.6.1
. I can see that they are both just typealiases for
java.util.concurrent.CancellationException
so in the end it doesn’t matter, but it tends to cause mess in the code.