Skip to content

Instantly share code, notes, and snippets.

@davidmerrick
Created July 11, 2019 22:06
Show Gist options
  • Save davidmerrick/33e2329676d9ca6e5a801662ab6c7805 to your computer and use it in GitHub Desktop.
Save davidmerrick/33e2329676d9ca6e5a801662ab6c7805 to your computer and use it in GitHub Desktop.
Get root cause of an exception with Throwables
import com.google.common.base.Throwables;
try {
// Try a thing
} catch (Exception e) {
Throwable rootCause = Throwables.getRootCause(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment