From: Tripp, B. <Bry...@uh...> - 2004-04-27 03:25:54
|
Done. Thanks for pointing this out. Bryan -----Original Message----- From: Archie Cobbs To: hl7...@li... Sent: 26/04/2004 6:27 PM Subject: [HAPI-devel] ApplicationException chaining Hi, This is a request to add an exception-chaining constructor to the ApplicationException class.. e.g.: public ApplicationException(Throwable cause) { ... } It's likely folks will need to wrap an application-specific exception within an ApplicationException instance. Right now you have to do this, which is awkward: } catch (MyException e) { throw new (ApplicationException)new ApplicationException(e.toString()).initCause(e); } Thanks, -Archie ________________________________________________________________________ __ Archie Cobbs * CTO, Awarix * http://www.awarix.com ------------------------------------------------------- This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek For a limited time only, get FREE Ground shipping on all orders of $35 or more. Hurry up and shop folks, this offer expires April 30th! http://www.thinkgeek.com/freeshipping/?cpg=12297 _______________________________________________ Hl7api-devel mailing list Hl7...@li... https://lists.sourceforge.net/lists/listinfo/hl7api-devel This e-mail may contain confidential and/or privileged information for the sole use of the intended recipient. Any review or distribution by anyone other than the person for whom it was originally intended is strictly prohibited. If you have received this e-mail in error, please contact the sender and delete all copies. Opinions, conclusions or other information contained in this e-mail may not be that of the organization. |