Course: Software Construction – Discussion 3
Java was one of the first languages to introduce a robust exception handling mechanism. All Java exceptions can be categorized into two buckets: Checked exceptions and Unchecked exceptions. Checked exceptions are those checked by the compiler to make sure that either that a programmer has provided an exception handler to handle the exception or at the least reclaimed that the checked exception can happen. On the […]