Yes. See the servlet spec for web.xml. To wit:

<error-page>
        <error-code>500</error-code>
        <location>myerrorpage.jsp</location>
</error-page>

and

<error-page>
        <exception-type>java.lang.NullPointerException</error-code>
        <location>myNPEhandler.jsp</location>
</error-page>


---------------------------------------------------------
Joseph B. Ottinger                 [EMAIL PROTECTED]
http://enigmastation.com                    IT Consultant

On Mon, 25 Mar 2002, Martin Rylander wrote:

> Is it possible to redirect to a default error page in Orion. Like the
> "ErrorDocument 500" funktion in Apache?
>
> thanks
> - martin
>


Reply via email to