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
What's the base class of all exception classes?
When do we use synchronized blocks and advantages of using synchronized blocks?
What is array length in java?
What are the disadvantages of using inner classes?
How do you insert a line break?
What are extraneous variables examples?
What is the primary benefit of encapsulation?
What about member inner classes?
Can a static method be overridden in java?
What happens when you add a double value to a string?
Can we have try block without catch block?
Why is core java important?
What is tostring () method?
What is a function in java?
What is null object in java?