What is the difference between error and exception and
explain in simple words not whatever is given in the book.
Answer Posted / muffy.jad@gmail.com
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
Is This Answer Correct ? | 26 Yes | 1 No |
Post New Answer View All Answers
Can we make constructors static?
What ide should I use for java?
Does isempty check for null?
what is static import in java? Explain
Is intellij better than eclipse?
What is the main use of java?
Which is easier .net or java?
Is alive in java?
Explain reverse a linked list recursive java solution?
What is the meaning of nullable?
What is sorting in java?
What are abstract classes and anonymous classes?
Explain some best practices you would apply while using collection in java?
How do you define a variable?
Is empty set an element of empty set?