Skip to content

Instantly share code, notes, and snippets.

@csadilek
Last active August 29, 2015 14:00
Show Gist options
  • Save csadilek/448831e58680944a76ad to your computer and use it in GitHub Desktop.
Save csadilek/448831e58680944a76ad to your computer and use it in GitHub Desktop.
@UncaughtException
private void onUncaughtException(Throwable caught) {
try {
throw caught;
}
catch (UserNotAuthenticatedException e) {
// navigate to login dialog
}
catch (Throwable t) {
logger.error("An unexpected error has occurred", t);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment