Skip to content

Instantly share code, notes, and snippets.

@pdemanget
Created October 21, 2022 09:52
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 pdemanget/c5f3fca6baef8eafb049c2ad80372ae4 to your computer and use it in GitHub Desktop.
Save pdemanget/c5f3fca6baef8eafb049c2ad80372ae4 to your computer and use it in GitHub Desktop.
stacktrace tro string
// idiomatism to dump stacktrace
StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String yourStack = sw.toString()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment