Skip to content

Instantly share code, notes, and snippets.

@fforbeck
Created May 23, 2013 15:38
Show Gist options
  • Save fforbeck/5636993 to your computer and use it in GitHub Desktop.
Save fforbeck/5636993 to your computer and use it in GitHub Desktop.
Print java stacktrace
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
t.printStackTrace(pw);
sw.toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment