3
Answers

Exception handling

Ask a question
suseela mani

suseela mani

16y
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)