Skip to content

Instantly share code, notes, and snippets.

@ebouchut
Created November 14, 2011 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebouchut/1363993 to your computer and use it in GitHub Desktop.
Save ebouchut/1363993 to your computer and use it in GitHub Desktop.
Print a StackTrace in a String
StringWriter writer = new StringWriter();
e.printStackTrace(
new PrintStream(
new WriterOutputStream(
new PrintWriter(writer)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment