Multiple choice

Which of the following statements is used to rethrow an exception?

  1. Throw(exception);

  2. Throw exception;

  3. Throw;

  4. Throws;

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The statement to rethrow the exception is throw; i.e. throw without any specified exception.