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 Throwable exception if it is failure.

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

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