Answers for "what is The value in which variable is printed by getMessage() method for an exception object?"

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 "what is The value in which variable is printed by getMessage() method for an exception object?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language