Multiple choice technology programming languages

Exceptions can be rethrown.

  1. True

  2. False

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

Exceptions can be rethrown in catch blocks using the 'throw' keyword without arguments (preserving the original exception) or by throwing a new exception. Rethrowing allows handling at multiple levels - do some local handling then propagate up.