Hi,

I would like to know, if we can capture all the errors to a servlet without defining the list of errors in web.xml as follows..

generally, we can capture an error like this:
        <error-page>
                <error-code>400</error-code>
                <location>/errorHandler</location>
        </error-page>
        .
        .
        .

is this possible? (see below)
        <error-page>
                <error-code>AllErrors</error-code>
                <location>/errorHandler</location>
        </error-page>
        
or is there any other mechanism?

Thanks.




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to