Exceptions

S

subhabangalore

Dear Group,

I am trying to learn Java and I am honored the way the expert members of the room are kindly guiding me.

I am trying to learn now exceptions. I am looking for a list of common exceptions in Java and how one may debug them.

If any one of you can kindly suggest.

Thanking you in Advance,
Regards,
Subhabrata.
 
L

Lew

What do you mean by "debug them"?
If you haven't yet downloaded and installed the documentation set for
your JDK, it would be a good idea to do so.

The documentation set lists the Exception(s) that are thrown by all the
methods in library classes: you'll find that a lot more useful than a
simple list of common exceptions. It also documents all Exceptions. This
tells you which package an Exception belongs to, which Exception it is a
subclass of and describes any additional methods it implements.

Also, read
http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html
 
S

Sven Köhler

Am 02.03.2013 20:08, schrieb (e-mail address removed):
I am trying to learn now exceptions. I am looking for a list of
common exceptions in Java and how one may debug them.

You should learn about checked and unchecked exception and the
difference between them. Consider the following examples:

FileNotFoundException (checked)
ArrayIndexOutOfBoundsException (unchecked)

If by debugging an exception you mean to find its cause? Well, each
exception has a stack trace and a message attached. That should tell you
what happened, and where it happened.

Not every exception needs debugging. A FileNotFoundException is
perfectly normal, if one tries to open a file that does not exist.


Regards,
Sven
 
R

Rajiv Gupta

Hello,

You could try ExceptionBuddy Professional Vers 2.0. You should avoid
version 1.0.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Code Repository 7
Some Eclipse Issue 4
Reading Code Standard 3
Simple Plot in Python 2
Topic Modeling LDA Gensim 0
Input from Console 7
Select, Cut, Copy and Move Files 1
Maximum Likelihood Estimation 10

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,060
Latest member
BuyKetozenseACV

Latest Threads

Top