Checked exception must be caught or declared, how about unchecked ones?
Checked exception must be caught or declared in the method throws statement. Unchecked Exception is not required to do the same. However, if you do, it does not cause an error either.Something must be specified does not imply Something else must not be specified The preferred way to deal with unchecked exception is put in javadoc, give programmer a warning.