![JAR search and dependency download from the Maven repository](/logo.png)
jsAndWasmSharedMain.internal.CoroutineExceptionHandlerImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core
Show all versions of kotlinx-coroutines-core
Coroutines support libraries for Kotlin
package kotlinx.coroutines.internal
import kotlinx.coroutines.*
import kotlin.coroutines.*
private val platformExceptionHandlers_ = mutableSetOf()
internal actual val platformExceptionHandlers: Collection
get() = platformExceptionHandlers_
internal actual fun ensurePlatformExceptionHandlerLoaded(callback: CoroutineExceptionHandler) {
platformExceptionHandlers_ += callback
}
internal actual class DiagnosticCoroutineContextException actual constructor(context: CoroutineContext) :
RuntimeException(context.toString())
© 2015 - 2025 Weber Informatics LLC | Privacy Policy