This content has been marked as final.
Show 4 replies
-
1. Re: Access exception stacktrace from error page
Pete Muir Dec 19, 2007 6:15 PM (in response to Vasilis BnUser)It's there as #{org.jboss.seam.handledException}
-
2. Re: Access exception stacktrace from error page
Vasilis BnUser Jan 14, 2008 5:06 AM (in response to Vasilis BnUser)I have just tried that and the result is the first line of the exception occured. Is there a similar way to return the full stack trace?
-
3. Re: Access exception stacktrace from error page
Nicklas Karlsson Jan 14, 2008 5:17 AM (in response to Vasilis BnUser)The Manual speaks of
org.jboss.seam.handledException holds the nested exception that was actually handled by an exception handler. The outermost (wrapper) exception is also available, as org.jboss.seam.exception.
is there anything useful in org.jboss.seam.exception? -
4. Re: Access exception stacktrace from error page
Pete Muir Jan 14, 2008 12:04 PM (in response to Vasilis BnUser)That's because it's an object and that's what it's toString() does!
You'll need some facelet or JSF component that is capable of writing out an exception message and stack trace when handed an exception object.