RE: Proper n tiered exception handling -- RESOLVED -- I think.

2005-02-15 Thread Brian McGovern
can, but am having trouble understanding the theory. I'd LOVE an example of an ApplicationSpecificException class. Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 12:00 PM To: Struts Users Mailing List Subject: RE: Proper n tiered e

RE: Proper n tiered exception handling

2005-02-15 Thread Brian McGovern
theory. I'd LOVE an example of an ApplicationSpecificException class. Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 12:00 PM To: Struts Users Mailing List Subject: RE: Proper n tiered exception handling I'm sure your right Dan

RE: Proper n tiered exception handling

2005-02-15 Thread Mark Bennett
ility. Mark -Original Message- From: Ole Hildebrandt [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 12:21 PM To: 'Struts Users Mailing List' Subject: AW: Proper n tiered exception handling Hi. My personal opinion is, that the Struts Exception handling doesn't br

AW: Proper n tiered exception handling

2005-02-15 Thread Ole Hildebrandt
ions.html? Kind Regards Ole -Ursprüngliche Nachricht- Von: Brian McGovern [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 15. Februar 2005 16:28 An: user@struts.apache.org Betreff: Proper n tiered exception handling I'm looking to get a handle on best exception handling practices

RE: Proper n tiered exception handling

2005-02-15 Thread jgkennedy
to "embed" the actually problem. Good stuff though, thanks -Original Message- From: Daniel Lipofsky <[EMAIL PROTECTED]> Sent: Feb 15, 2005 11:52 AM To: Struts Users Mailing List Subject: RE: Proper n tiered exception handling Why do you do all that work to print

RE: Proper n tiered exception handling

2005-02-15 Thread Daniel Lipofsky
edByException(); if (t3 != null && t3 != t && t3 != exception && t3 != exception.getCause()) log.error("caused by: ", t3); } - Dan > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 15, 20

Re: Proper n tiered exception handling

2005-02-15 Thread Antony Joseph
target database. The actions generally don't have any try/catch blocks. I let struts handle the exceptions. - Original Message - From: "Brian McGovern" To: user@struts.apache.org Subject: Proper n tiered exception handling Date: Tue, 15 Feb 2005 10:28:27 -0500 > &g

RE: Proper n tiered exception handling

2005-02-15 Thread jgkennedy
exception that you caught? How do you grab the error on the JSP page? Thanks -Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 11:16 AM To: Struts Users Mailing List Subject: Re: Proper n tiered exception handling I use declaritive ex

RE: Proper n tiered exception handling

2005-02-15 Thread Brian McGovern
, 2005 11:16 AM To: Struts Users Mailing List Subject: Re: Proper n tiered exception handling I use declaritive exception handling which is built into Struts. Works great for me. I really don't use custom exceptions that much any more because it's harder to track the original error

Re: Proper n tiered exception handling

2005-02-15 Thread jgkennedy
electing view/source from you browser. Only show the user and nice "pretty" message. Jim -Original Message- From: Brian McGovern <[EMAIL PROTECTED]> Sent: Feb 15, 2005 10:28 AM To: user@struts.apache.org Subject: Proper n tiered exception handling I'm looking t

Proper n tiered exception handling

2005-02-15 Thread Brian McGovern
I'm looking to get a handle on best exception handling practices in my app. Kinda beginner question i guess, sorry. Im catching the various sql and naming exceptions in the data classes and logging and throwing a custom exception called ApplicationException which is blank and provided below.