Skip to content

Instantly share code, notes, and snippets.

@eranharel
Last active December 11, 2015 04:29
Show Gist options
  • Save eranharel/4545510 to your computer and use it in GitHub Desktop.
Save eranharel/4545510 to your computer and use it in GitHub Desktop.
Exception handling sadness :P
} catch (final Throwable e) {
_logger.error("Failed to init blah", e);
try {
throw e;
} catch (final Throwable e1) {
_logger.error("Failed to throw throwable excpetion", e1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment