Which of the following rules is/are false for exceptions?
Options
- Each try block or "throw" must have at least one corresponding catch block
- Multiple catch blocks can be used to catch different classes of exceptions
- Both a and b
- Exceptions cannot be thrown (or re-thrown) in a catch block within a try block
CORRECT ANSWER : Exceptions cannot be thrown (or re-thrown) in a catch block within a try block
Write your comments