3
Answers

Exception handling

suseela mani

suseela mani

17y
2.7k
1

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)