Skip to content

Latest commit

History

History
15 lines (12 loc) 路 539 Bytes

File metadata and controls

15 lines (12 loc) 路 539 Bytes

Which of the following statements about exceptions is NOT true?

  • A) Only objects of class Exceptions, classes extending it, and class Error can be thrown
  • B) Uncaught exceptions always cause fatal errors
  • C) It is recommended that catch(Exception) be the last catch clause
  • D) Exceptions can be re-thrown after being caught
Answer

Answer: A, B