| Author |
Handling multiple exception codes in a single exception object
|
manish ahuja
Ranch Hand
Joined: Oct 23, 2003
Posts: 312
|
|
We have a scenario where in we have to invoke a web service. This web service on exception situation may return multiple status codes. We want to raise a custom exception & populate this custom exception with with all the status codes & status messages returned by the web service. From this service layer we have to send this exception object back to the Struts (controller layer). At the controller layer we populate the ActionMEssages(1 each for a status code) object which finally gets displayed on a error.jsp file. What would be the best way to handle this multiple status codes scenario. Do post your thoughts Regards
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
|
You could create a custom "complex" exception that encapsulates many more basic exceptions. As your service method works it can build a list of basic exceptions and add them all to the one big exception.
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Francesco Bianchi
Ranch Hand
Joined: Jun 22, 2007
Posts: 62
|
|
Or you can build a single Exception carryng a Collection (a List???) of simple Containers. Your Container is a class made up of only two attributes: ErrorCode e Message where the first one is a custom Enum value (if you are using a Java version graeter-equal to 1.5) and the Message is String (probably a code you can use as a key on a localization property file). Probably the Paul Sturrock suggestion is more far-seeing and flexible. Maybe mine is easier to handle if all you have to do is to visualize some error messages on the Jsp or to put it in a switch statement. I recall you switch can work well with Enums. Doing the same with different types of Exceptions instances would force you to use a bunch of "instance of" inside a multi-branch if-else construct or to loop through the Exception Collection and to intentionally throw them so that a propr catch block can handle them in an adequate way. Cheers, Francesco.
|
SCJP 5 & 6, SCWCD 5, SCBCD 5
|
 |
manish ahuja
Ranch Hand
Joined: Oct 23, 2003
Posts: 312
|
|
Hi Paul, Will the complex exception class as you mentioned have a Collection object for storing basic exceptions. Can you ellaborate a bit on the structure of this complex exception class Regards
|
 |
 |
|
|
subject: Handling multiple exception codes in a single exception object
|
|
|