exceptionOrElse

inline fun <T> KotlinResult<T>.exceptionOrElse(onSuccess: (value: T) -> Throwable): Throwable

Try to get the exception of this Result.

Note, that this function rethrows any Throwable exception thrown by onSuccess function.