Can the "path" below map to a struts action?
<global-exceptions>
<exception key="error.general"
type="java.lang.Exception"
path="/error.jsp"/>
</global-exceptions>
That way I can route to an errorAction that logs all the details with
a unique key, then display just a simple general message with unique
key to the user that they can give helpdesk if they call.

