+1 vote
in JAVA by
What is the difference between error and an exception in Java?

2 Answers

0 votes
by
An error is an irrecoverable condition occurring at runtime. Such as OutOfMemory error. These JVM errors and you can not repair them at runtime. While exceptions are conditions that occur because of bad input etc. e.g. FileNotFoundException will be thrown if the specified file does not exist. Or a NullPointerException will take place if you try using a null reference. In most of the cases it is possible to recover from an exception (probably by giving user a feedback for entering proper values etc.).
0 votes
by

An Error "indicates serious problems that a reasonable application should not try to catch."

An Exception "indicates conditions that a reasonable application might want to catch."

Source: github.com/snowdream   

Related questions

0 votes
asked Nov 15, 2020 in JAVA by rajeshsharma
0 votes
asked May 2, 2021 in JAVA by sharadyadav1986
...