Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 361 Bytes

File metadata and controls

17 lines (11 loc) · 361 Bytes

Checked & Unchecked Exception


Checked Exception

  • A subclass of the Exception class that is not a subclass of RuntimeException
  • Error handling is mandatory!!!!
    • try/catch or throw

Unchecked Exception

  • A subclass of RuntimeException
    • As the name suggests, exceptions that can occur at runtime
  • Error handling is not enforced