0 votes
by (1.1k points)

1 Answer

0 votes
by (1.6k points)
selected by
 
Best answer

An error is an irrecoverable condition occurring at runtime. Such as the OutOfMemory error. These JVM errors you cannot repair at runtime. While exceptions are conditions that occur because of bad input or human error etc. e.g. FileNotFound Exception will be thrown if the specified file does not exist.

...