Skip to content

Instantly share code, notes, and snippets.

@varmas
Created August 23, 2019 17:07
Show Gist options
  • Save varmas/ed74a50a45df484acf2febe29551a81c to your computer and use it in GitHub Desktop.
Save varmas/ed74a50a45df484acf2febe29551a81c to your computer and use it in GitHub Desktop.
exception wrapper 2
def errorWrapper[T](message: String, fn: => T): T = {
try {
logger.warn(s"Attempting [$message]")
fn
} catch {
case ex: Throwable => logger.error(s"[$message] error", ex)
throw ex
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment