KT-30330 KotlinNothingValueException
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user