java exception message code example

Example 1: 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); 
        }

Example 2: what is exception in java

In java exception is an object. Exceptions are created when an abnormal 
situations are arised in our program. Exceptions can be created by JVM or 
by our application code. All Exception classes are defined in java.lang. 
In otherwords we can say Exception as run time error.

Tags:

Java Example