Skip to content

Instantly share code, notes, and snippets.

@anthonycvella
Created July 21, 2015 04:18
Show Gist options
  • Save anthonycvella/e3e905beb1655d365dae to your computer and use it in GitHub Desktop.
Save anthonycvella/e3e905beb1655d365dae to your computer and use it in GitHub Desktop.
for(Throwable t : e) {
System.out.println("Throwable: " + t);
Throwable cause = t.getCause();
while (cause != null) {
System.out.println("Cause: " + cause);
cause = cause.getCause();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment