diff --git a/libraries/stdlib/common/src/kotlin/ExceptionsH.kt b/libraries/stdlib/common/src/kotlin/ExceptionsH.kt index 9d7dc3c4e1a..90d627ceddc 100644 --- a/libraries/stdlib/common/src/kotlin/ExceptionsH.kt +++ b/libraries/stdlib/common/src/kotlin/ExceptionsH.kt @@ -108,3 +108,11 @@ public expect class UninitializedPropertyAccessException : RuntimeException { constructor(message: String?, cause: Throwable?) constructor(cause: Throwable?) } + +@SinceKotlin("1.4") +internal class KotlinNothingValueException : RuntimeException { + constructor() : super() + constructor(message: String?) : super(message) + constructor(message: String?, cause: Throwable?) : super(message, cause) + constructor(cause: Throwable?) : super(cause) +} \ No newline at end of file