How would you go about retrieving this ExceptionHolder from the value stack
from within an action? I can't figure out what "key" to specify when trying
to find it.
/**
* Default implementation to handle ExceptionHolder publishing. Pushes
given ExceptionHolder on the stack.
* Subclasses may override this to customize publishing.
*
* @param invocation The invocation to publish Exception for.
* @param exceptionHolder The exceptionHolder wrapping the Exception to
publish.
*/
protected void publishException(ActionInvocation invocation,
ExceptionHolder exceptionHolder) {
invocation.getStack().push(exceptionHolder);
}
--
Scott
[EMAIL PROTECTED]