Um, you might want to try java.io.IOException instread of
java.lang.IOException... ;-)

--
Martin Cooper


"Song Qiu" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I use <error-page> to do global error handling. It works perfectly for
> ServletException. I can see the eror page displayed properly. But for
> IOException, It does not work, I can only see a blank page.
>
> Here is part of my web.xml:
> <error-page>
> <!-- This is to catch any ServletException -->
> <exception-type>javax.servlet.ServletException</exception-type>
> /GenericErrorForward.jsp
> </error-page>
>
> <error-page>
> <!-- This is to catch any IOException -->
> <exception-type>java.lang.IOException</exception-type>
> /GenericErrorForward.jsp
> </error-page>
>
> Thanks.
>
> Song
>




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

Reply via email to