Skip to content

Instantly share code, notes, and snippets.

@mochadwi
Last active June 23, 2021 16:08
Show Gist options
  • Save mochadwi/8f9326ee891729394e1a117a8f9cce3d to your computer and use it in GitHub Desktop.
Save mochadwi/8f9326ee891729394e1a117a8f9cce3d to your computer and use it in GitHub Desktop.
fun <R> Throwable.multicatch(vararg classes: KClass<*>, block: () -> R): R {
if (classes.any { this::class.isSubclassOf(it) }) {
return block()
} else throw this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment