Exception handling in struts

2004-03-23 Thread Tate Austin
I'm trying to write an exception handler in my struts-config to clean up my application's exception behavior. Well, I've followed the directions in the docs to a T, I have this entry in my struts config: global-exceptions exception key=uncaught_exception type=java.lang.exception

Exception handling in struts

2004-03-25 Thread Tate Austin
I'm trying to write an exception handler in my struts-config to clean up my application's exception behavior. Well, I've followed the directions in the docs to a T, I have this entry in my struts config: global-exceptions exception key=uncaught_exception type=java.lang.exception

Re: Exception handling in struts

2004-03-25 Thread Tate Austin
handler=com.graysail.pgbadmecs.exceptions.ExceptionCatcher scope=request/ /global-exceptions Exception needs to be upper case. If your ExceptionCatcher really is called exceptioncatcher (all lower case), then keep your handler line the same. Nick Tate Austin wrote: I'm trying to write