Tag Archive

Tag Archives for " Unchecked "

Checked or Unchecked Exceptions?

1. Overview In Java, there are basically two types of exceptions: Checked exceptions and Unchecked exceptions (RuntimeException and Error). The differences between checked, unchecked and error are: Checked Exceptions must be explicitly caught or propagated. Unchecked exceptions do not have this requirement. They don’t have to be caught or declared thrown. Checked Exceptions in Java […]

Continue reading