what is difference between Exception and Error?
Answers were Sorted based on User's Feedback
Exceptions are those which can be handled at the run time
where as errors cannot be handled.
Examples for exceptions: Array out of bonds, attempt to
divide by zero etc.
Exceptions can be handled by handlers using try - catch.
Is This Answer Correct ? | 279 Yes | 48 No |
Answer / shahnawaz ali shah
Exception is coverable
Error is uncoverable
Exception can be handled
and Error can not be handled
Exceptio is an run time error when an abnormal condition is
occured the jvm detect it and make the object of that
abnormal condition and throws it to its own class and that
object is catched by catched block and catch block handled it
Error is the compile time error not runtime and it is not
covered it is only fixed by a programer.
Note
When Error occur then our programe stops and donot run
but If exception occur then nothing happining only try block
will be suspended and after that if any code is written that
will be executed properly means our system or programe work
properly.
Is This Answer Correct ? | 116 Yes | 17 No |
Answer / ganesh
Exception means When a method encounters an abnormal
condition (an exception condition) that it can't handle
itself, it may throw an exception.
Error mens system doesn't handle.For example:Overflow,Out
of memory.
Is This Answer Correct ? | 68 Yes | 26 No |
Answer / sandeep tyagi
The functional diiference, in terms of the compiler, is
that you don't have to declare errors in throws clauses on
methods, or catch them.
Conceptually, an Error means something has gone wrong with
your program, which should usually give up and crash,
whereas an exception is for an unusual situation that you,
as a programmer, anticipated as a possibilty. So, for
example, a divide-by-zero is an Error, but attempting to
read a file and finding it doesn't exist is an Exception.
Is This Answer Correct ? | 78 Yes | 55 No |
Exceptions are also kind of errors which we can hadle at
both compile time and run time by using try and catch
blocks.
These are two types: Compile time and runtime.
Sql and IO operations are come under compile time array
index out of bounds and null pointer these are come under
runtime exceptions
Errors are the problems which we cant hadle, like stack
overflow and memory out of bounds like that...
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / saurabh kumar gupta
Errors are the abnormal conditions which can not be handled
by your program and the program will immediately interrupt
while exceptions are those abnormal conditions which your
program can handle with the techniques of error handling.
Errors can not be handled and will stop uour program.
Is This Answer Correct ? | 12 Yes | 4 No |
Answer / gireesh
Exceptions are also kind of errors which we can hadle at
both compile time and run time by using try and catch
blocks.
These are two types: Compile time and runtime.
Sql and IO operations are come under compile time array
index out of bounds and null pointer these are come under
runtime exceptions
Errors are the problems which we cant hadle, like stack
overflow and memory out of bounds like that...
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / mantu
An Exception is an abnormal condition or situation that arises
in a code at run time means they are are run time error.
An exception can be caught handled manually but an error can not be caught or handled.
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / zohaib
exception occurs at runtime of your program
while an error may arise during your compile time
Is This Answer Correct ? | 12 Yes | 6 No |
Answer / ravikiran
Exception is an abnormal condition occured at runtime.
Error is the one which is of runtime exception type,theat
what we cann't declare in throws clause.
Is This Answer Correct ? | 33 Yes | 29 No |
How do you print array in java?
What does s mean in regex?
What are keywords in programming?
What languages are pass by reference?
How big is a 32 bit integer?
What is the size of arraylist in java?
How many bytes is a character?
What are the main features of java?
What is the parse method in java?
Which of the following can be referenced by a variable? A. The instance variables of a class only B. The methods of a class only C. The instance variables and methods of a class
Can you explain the meaning of aggregation and composition
Is it possible to use Semaphore/ Mutex in an Interrupt Handler?