Exceptions Handling

This lesson lists issues to be cognizant of when working with Java exceptions.

We'll cover the following...

Notes on Exceptions

  1. Use exceptions for exceptional situations and not for ordinary control flow.

  2. Use checked exceptions for ...