Forums Register Login

Application Exceptions

+Pie Number of slices to send: Send
Hello,
In EJB, the Application exceptions and system exceptions are handled differently. System exceptions are wrapped in RunTimeException, while application exceptions are thrown back as it is. This is because, we always have our Application exceptions as checked exceptions.

Now,lets say I have a method which takes an integer argument, and if it is less than 1000, I want to throw back an exception. Instead of writing a new exception, I decide to use IllegalArgumentException. Also, in the method signature, in the throws clause I specify this(though not required as it is an RunTimeException). But now, as the container sees this as an RunTimeException, it throws me back an RunTimeException and not IllegalArgumentException as I wanted.

So, why is it designed this way?
I end up writing lot of custom exceptions because of this. What is the way out?

Thank You,
Ranga.
+Pie Number of slices to send: Send
Hello,
you say : "System exceptions are wrapped in RunTimeException"
No, the system exceptions ARE RuntimeException, so when the Bean throws a RuntimeException, the container wraps it into an EJBException.
Then, if the client is local, it receives the EJBException (or a TransactionRolledBackLocalException), while if it is remote, it receive a RemoteException (or a TransactionRolledBackException)

A System exception is a non-recoverable situation where you haven't a fine-grained control, so you simply can throw an EJBException...but if the IllegalArgumentException is the cause of a missing business requirements, you must signal it with an application exception...

Ciao
Evildoers! Eat my justice! And this tiny ad's justice too!
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 768 times.
Similar Threads
Is IllegalArgumentException an application exception
Exceptions
user defined exception problem in session bean.
How to see true origin of exception?
OK back with another Exception Handeling question
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 05:11:27.