Posted By:
SUDHEER_GHANTA
Posted On:
Monday, May 22, 2006 04:15 AM
When an exception has been occured in try block, the cursor goto try block according to the raised exception.
Then after catch block execuion is oven is the curson come back to execute the remaining statements in try block which is after the exception raised statement or not?
like this
try{
------------
------------
------Exceptioin occured statement;
-------- these stmts are executed or not after catch?
----------
catch(e)
{
-----
----------
}