Java
Programming and Technical
Programming
Definition
Q. What is the difference between error and an exception?
A. 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.).
Read Solution (Total 2)
-
- An exception is a problem occurred during execution time of the program.Errors are caused by lack of system resources . these are non recoverable.
- 9 years agoHelpfull: Yes(1) No(0)
- 1.error is occurring at runtime and compiletime both , exception is occurred only at runtime.
2.exception have 2 types (a)checked exception{checked by compiler} (b)unchecked exception{checked by jvm} - 10 years agoHelpfull: Yes(0) No(0)
Java Other Question