try {
statement 1 // executing successfully
statement 2 // Exception Occured
statement 3 // Skip Execution
} catch(Exception e) {
e.printstacktrace();
} finally {
statement 4
}
the above code is the basic of trycatch block.Here if st2 failed then st3 is going to execute.So is there any way where we can execute st3 after st2 fails??
one of the interview Question in java