package javadisplayexception; /** * @web http://java-buddy.blogspot.com/ */ public class JavaDisplayException { public static void main(String[] args) { try{ int i = 10/0; }catch (Exception ex){ System.out.println("- ex.toString() -"); System.out.println(ex.toString()); System.out.println(); System.out.println("- ex.getMessage() -"); System.out.println(ex.getMessage()); System.out.println(); System.out.println("- ex.printStackTrace() -"); ex.printStackTrace(); } } }
Sunday, April 27, 2014
Get information about Exception, with toString(), getMessage() and printStackTrace()
This example get details of Exception with toString(), getMessage() and printStackTrace().
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment