Answers for "exception to string java"

1

java print stack trace to string

StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String exceptionAsString = sw.toString();
Posted by: Guest on December-21-2020
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); 
        }
Posted by: Guest on October-12-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language