What are the differences between unchecked exception, checked exception, and errors?

Answer Posted / nashiinformaticssolutions

• An Unchecked exception inherits from RuntimeException (which extends from exception). The JVM treats RuntimeException differently as there is no requirement for the application code to deal with them explicitly.
• A checked exception inherits from the exception class. The client code has to handle the checked exceptions either in a try-catch clause or has to be thrown for the super-class to catch the same. A checked exception thrown by a lower class (sub-class) enforces a contract on the invoking class (super-class) to catch or throw it.
• Errors (members of the error family) usually appear for more serious problems, such as OutOfMemoryError (OOM), that may not be so easy to handle.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's the base class of all exception classes?

764


When do we use synchronized blocks and advantages of using synchronized blocks?

850


What is array length in java?

694


What are the disadvantages of using inner classes?

735


How do you insert a line break?

663






What are extraneous variables examples?

731


What is the primary benefit of encapsulation?

754


What about member inner classes?

847


Can a static method be overridden in java?

730


What happens when you add a double value to a string?

740


Can we have try block without catch block?

766


Why is core java important?

759


What is tostring () method?

746


What is a function in java?

738


What is null object in java?

757