exception to string java code example
Example 1: java print stack trace to string
StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String exceptionAsString = sw.toString();
Example 2: print exception in java
try
{
int a = 20/0;
} catch (Exception e)
{
// getMessage method
// Prints only the message of exception
// and not the name of exception
System.out.println(e.getMessage());
// Prints what exception has been thrown
System.out.println(e);
}