we have an errorPage directive in our top level jsp.
<%@ page language="java" errorPage="myError.jsp" %>
(myError.jsp does some very general error handling. In addition to putting up a default page it sends email to a support team)
Is there anyway to replace the top-level catch mechanism for uncaught jsp errors?
Thanks,
-pf
<%@ page language="java" errorPage="myError.jsp" %>
(myError.jsp does some very general error handling. In addition to putting up a default page it sends email to a support team)
Is there anyway to replace the top-level catch mechanism for uncaught jsp errors?
Thanks,
-pf
Comment