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

Answer Posted / hr@tgksolutions.com

• 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

How large is a boolean?

739


How do you declare an array in java?

718


What are the main differences between the java platform and other platforms?

726


What is math in java?

790


What type of language is java?

735






Where are register variables stored?

765


What is appletviewer?

783


What is passing by reference in java?

733


Explain with example the concept of constant variable in java.

860


How you can force the garbage collection?

715


Why is core java important?

759


If an application has multiple classes in it, is it okay to have a main method in more than one class?

731


How do you compare values in java?

773


Can we print null in java?

761


Which category the java thread do fall in?

734