

Hi,
Here is the answer.
When an exception is thrown with in the body of the try statement then the catch clauses of the try statement are examined in the order in which they appear.The first catch clause that is capable of handling the exception is caught and the remaining are ignored.
Thanks.