is it possible to get executed more than one catch block with single try statement
Sigiloso
You can have multiple catch blocks associated with a try block,but only a single catch block can ever handle your exception. you can have a try block without a catch,but it is mandatory to have a finally block