3
Answers

Exception handling

Photo of suseela mani

suseela mani

17y
2.4k
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)