aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/native/src/Exceptions.kt
diff options
context:
space:
mode:
Diffstat (limited to 'kotlinx-coroutines-core/native/src/Exceptions.kt')
-rw-r--r--kotlinx-coroutines-core/native/src/Exceptions.kt7
1 files changed, 1 insertions, 6 deletions
diff --git a/kotlinx-coroutines-core/native/src/Exceptions.kt b/kotlinx-coroutines-core/native/src/Exceptions.kt
index 7c76bc6d..da9979b6 100644
--- a/kotlinx-coroutines-core/native/src/Exceptions.kt
+++ b/kotlinx-coroutines-core/native/src/Exceptions.kt
@@ -10,12 +10,7 @@ package kotlinx.coroutines
* **It is not printed to console/log by default uncaught exception handler**.
* (see [CoroutineExceptionHandler]).
*/
-public actual open class CancellationException(
- message: String?,
- cause: Throwable?
-) : IllegalStateException(message, cause) {
- public actual constructor(message: String?) : this(message, null)
-}
+public actual typealias CancellationException = kotlin.coroutines.cancellation.CancellationException
/**
* Thrown by cancellable suspending functions if the [Job] of the coroutine is cancelled or completed