catch all exceptions java code example
Example 1: how do you handle exceptions in java
I use try & catch blocks to handle any exceptions in my code.
I am familiar with major checked and unchecked exceptions and
handle it accordingly to make my code execution smooth
Example 2: can we have multiple catch block for a try block
In some cases our code may throw more than one exception.
In such case we can specify two or more catch clauses, each catch handling
different type of exception. When an exception is thrown jvm checks each
catch statement in order and the first one which matches the type of
exception is execution and remaining catch blocks are skipped.
Try with multiple catch blocks is highly recommended in java.
If try with multiple catch blocks are present the order of catch blocks is
very important and the order should be from child to parent.