11/01/2015
Question - Exception Handling in Java with example
Answer Posted at -http://www.kriblog.com/java/exception/exception-handling-in-java-with-example.html
An exception is a problem that arises during the ex*****on of a program. There are two ways of exception handling in java : using try catch and finally block and using throws keyword. All exception classes are subtypes of the java.lang.Exception class. The exception class is a subclass of the Throwa…