KT-30330 KotlinNothingValueException

This commit is contained in:
Dmitry Petrov
2020-04-07 12:33:59 +03:00
parent 6acf9385bd
commit 9941c255b9
@@ -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)
}