W3cubDocs

/Kotlin

getOrThrow

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
fun <T> Result<T>.getOrThrow(): T

Returns the encapsulated value if this instance represents success or throws the encapsulated exception if it is failure.

This function is shorthand for getOrElse { throw it } (see getOrElse).

© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/get-or-throw.html