what is difference between checked and unchecked exception
plz explain examples ?

Answer Posted / archana

What is the difference between Checked exceptions and
unchecked exceptions in JAVA?In: Java Programming [Edit
categories]
Computer Programming QuestionsAnswers.com > Wiki Answers >
Categories > Technology > Computers > Computer Programming
> Java Programming > What is the difference between Checked
exceptions and unchecked exceptions in JAVA?
Best Answer.
Unchecked exceptions :


•represent defects in the program (bugs) - often invalid
arguments passed to a non-private method. To quote from The
Java Programming Language, by Gosling, Arnold, and
Holmes : "Unchecked runtime exceptions represent conditions
that, generally speaking, reflect errors in your program's
logic and cannot be reasonably recovered from at run time."
•are subclasses of RuntimeException, and are usually
implemented using IllegalArgumentException,
NullPointerException, or IllegalStateException
•a method is not obliged to establish a policy for the
unchecked exceptions thrown by its implementation (and they
almost always do not do so)
Checked exceptions :


•represent invalid conditions in areas outside the
immediate control of the program (invalid user input,
database problems, network outages, absent files)
•are subclasses of Exception
•a method is obliged to establish a policy for all checked
exceptions thrown by its implementation (either pass the
checked exception further up the stack, or handle it
somehow)
It is somewhat confusing, but note as well that
RuntimeException (unchecked) is itself a subclass of
Exception (checked).

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sling swing?

732


How to link two forms in java swing?

818


What is swing used for?

643


What is awt and swing in java?

683


Why would you use swingutilities.invokeandwait or swingutilities.invokelater?

725






Hello Everyone.. I m trying to develop a java swing application where i can display a doc file Jeditorpane or Jtextpane.

1913


What is the role of java swing?

678


What is java awt and swing?

772


In what context should the value of swing components be updated directly?

677


What is swing in java with example?

686


What is an event and what are the models available for event handling?

722


How to change button color in java swing?

682


Is swing an api?

705


What is a component in swing?

664


What is swing components in java?

689