Checked

Difference Between Checked and Unchecked Exception in Java
There are two types of exceptions: checked exception and unchecked exception. ... The main difference between checked and unchecked exception is that ...
Difference Between Checked Exception and Runtime Exception
Main difference between RuntimeException and checked Exception is that It is mandatory to provide try-catch or try finally block to handle checked Exc...