try-catch-finally blocks syntax
2. //Statements to be monitored for any exception
3. } catch(ThrowableInstance1 obj) {
4. //Statements to execute if this type of exception occurs
5. } catch(ThrowableInstance2 obj2) {
8. //Statements which should be executed even if any exception happens