0 votes
in JAVA by

What are checked exceptions in Java?

1 Answer

0 votes
by

Checked exception are those which the Java compiler forces you to catch. e.g. IOException are checked Exceptions.

...