This week's giveaways are in the MongoDB and Jobs Discussion forums.
We're giving away four copies of Mongo DB Applied Patterns and 4 resume reviews from Five Year Itch and have the authors/reps on-line!
See this thread and this one for details.
The moose likes Beginning Java and the fly likes What exception to use? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "What exception to use?" Watch "What exception to use?" New topic
Author

What exception to use?

Sharon whipple
Ranch Hand

Joined: Jul 31, 2003
Posts: 294
I am running line of code that will execute Ejb remote/local method
I want to be sure that I will handle every exception possible
Should i use Throwable or RuntimeException whats the difference anyway?
Thank you
Sharon




Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32595
    
    4
You need to go through the Exceptions part of the Java tutorial. You should be catching anything your method declares in its javadoc or throws clause.
Not usually a good idea to try catching everything, but if you insist then catch Exception.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: What exception to use?
 
Similar Threads
true or false?
exam lab q-9(excepton handling)
Exception Question
Exception Handling
catch Throwable