Custom tags hiding JSP error messages

2001-08-01 Thread Jamie Tsao
Title: Custom tags hiding JSP error messages Hi, I was curious whether other people encountered this problem. I've used tag libraries before, and am currently using struts' template tag library. I have found that runtime JSP errors, such as null pointer exceptions, are hard to debug

Re: Custom tags hiding JSP error messages

2001-08-01 Thread Jon Brisbin
log)... Jon Brisbin - Original Message - From: Jamie Tsao [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 01, 2001 11:44 AM Subject: Custom tags hiding JSP error messages Custom tags hiding JSP error messages Hi, I was curious whether other people encountered

Re: Custom tags hiding JSP error messages

2001-08-01 Thread Calvin Yu
Usually when struts taglib captures an error, it is stored as a request attribute under the key Action.EXCEPTION_KEY. What I ended up doing is write a custom error JSP and set that as my default error page in web.xml. I'm not sure if the template taglibs are storing their exception there