Please can you tell me how it is possible to send an error message to a
jsp page from a
servlet when an exception has been caught.
Say I have a class MyException.java which creates a
string to show a user-friendly error message. How can I get this to forward to myError.jsp as the exception class has no handle on the request or response objects for the
getServletContext().getRequestDispatcher( itsPage ).include ( itsRequest, itsResponse ) method?
many thanks