Exception handling

Dec 5 2007 6:28 AM

hello sir/madam,

could you please tell me what happens in the following session1 and session2?

Section 1

 Try{

Some code

}

Catch(exception e)

{

Throw e;

}

 Section 2

Try{

Some code

}

Catch(exception e)

{

Throw;

}

  


Answers (3)