| 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
|
|
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.
|
 |
 |
|
|
subject: What exception to use?
|
|
|