Skip to content

Instantly share code, notes, and snippets.

@abircse
Created February 15, 2021 13:39
Show Gist options
  • Save abircse/39dc0dbf690aea54cd9793dbe4c4ee95 to your computer and use it in GitHub Desktop.
Save abircse/39dc0dbf690aea54cd9793dbe4c4ee95 to your computer and use it in GitHub Desktop.
TryCatchExtension
inline fun tryCatch(onTry: () -> Unit, onCatch: (Exception) -> Unit) {
try {
onTry.invoke()
} catch (e: Exception) {
onCatch.invoke(e)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment