At 07:16 11/01/02 -0600, you wrote:
>You could use a JSP error page from a servlet.
>
>Catch any ServletException errors, and do a redirect to your JSP error page.
>
>Here's short snips from one of my servlets:
>try {
> //sending email from the servlet...
>} catch (ServletException ex) {
> log("Failure to send email", ex);
> sendErrorRedirect(req, res, "/error.jsp", ex);
>}
>
>
>protected void sendErrorRedirect(HttpServletRequest request,
>HttpServletResponse response, String errorPageURL, Throwable e) {
> try {
> request.setAttribute ("javax.servlet.jsp.jspException", e);
>
>getServletConfig().getServletContext().getRequestDispatcher(errorPageURL).fo
>rward(request, response);
> } catch (Exception ex) {
> log(getServletName() + ".sendErrorRedirect ", ex);
> }
>}
>
>
>Hope that helps...
But, I can't catch ServletException. When I try to catch I get the
following message:
EnbreveServlet.java:102: exception javax.servlet.ServletException is never
thrown in body of corresponding try statement
} catch (ServletException se ) {
^
---------------------------------------------------------------------
H�ctor Garcia Peris
Dpto. Inform�tica
Instituto Valenciano de Investigaciones Econ�micas S.A. (Ivie)
C/ Guardia Civil, 22 esc-2 1� 46020 - Valencia (Spain)
Tfno.: +34 - 963190050 / +34 - 963930816
Fax.: +34 - 963190055 / +34 - 963930856
e-mail: [EMAIL PROTECTED]
----------------------------------------------------------------------
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>