What is the difference between a runtime exception and a checked exception
Answers
Answered by
0
Answer:
All the exceptions are derived either from Exception or RuntimeException . ... An Exception is checked, and a RuntimeException is unchecked. Checked means that the compiler requires that you handle the exception in a catch, or declare your method as throwing it (or one of its superclasses).
Similar questions