RE: Using errorPage

2002-03-05 Thread Randy Layman
I only ask because you don't mention it - are you throwing the error? JSPs only route to the error page if the exception is thrown and not caught during the execution of your page. If you don't throw it, or you throw it and catch it, JSP will never see the error. Randy

RE: Using errorPage

2002-03-05 Thread Peter Lewandowski
Yes , I'm throwing an exception. A nullPointerException. /Peter -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: den 5 mars 2002 15:13 To: 'Tomcat Users List' Subject: RE: Using errorPage I only ask because you don't mention it - are you throwing