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

Last updated