All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.com.github.kittinunf.result.runCatching.kt Maven / Gradle / Ivy

package com.github.kittinunf.result

actual inline fun  doTry(work: () -> R, errorHandler: (Throwable) -> R): R {
    return try {
        work()
    } catch (t: Throwable) {
        errorHandler(t)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy