exception handling in java with example
Example 1: 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.
Example 2: how many ways we can do exception handling in java
We can handle exceptions in either of the two ways :
1) By specifying try catch block where we can catch the exception.
2) Declaring a method with throws clause