[Peepagg-cvs] SP/web defaultExceptionHandler.jsp,NONE,1.1
Brought to you by:
chalko,
marccanter
|
From: <ch...@us...> - 2003-12-15 06:13:56
|
Update of /cvsroot/peepagg//SP/web In directory sc8-pr-cvs1:/tmp/cvs-serv15897/web Added Files: defaultExceptionHandler.jsp Log Message: Added exception Handler --- NEW FILE: defaultExceptionHandler.jsp --- <%@ page language="java" %> <%@ page isErrorPage="true" %> <%@ page import="org.sourceid.sso.util.ExceptionUtils" %><% // Recommend setting a different status code, anything but the default of 200 (HTTP_OK) response.setStatus(500); %> <html> <head> <title>SourceID-SSO Sample Error Page</title> </head> <body> An error occured. Replace this page (or the pointer in sourceid-sso.xml) with a "real" error page. <br> <pre> <%=ExceptionUtils.dissect(exception, request)%> </pre> </body> </html> <%-- * * License * * The contents of this file are subject to the Public Source * License-SourceID SSO v1.0. You may not copy or use this file, in either * source code or executable form, except in compliance with the Public * Source License-SourceID SSO v1.0. You may obtain a copy of the license * at http://www.pingidentity.com or * http://www.sourceid.org/docs/PSL-SSO10.htm * * Software distributed under the Public Source License-SourceID SSO v1.0 * is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either * express or implied. See the Public Source License-SourceID SSO v1.0 for * the specific language regarding rights and limitations. * * Copyrights * Copyright (c) 2002-2003 Ping Identity Corporation. All Rights Reserved. * Contact information for Ping Identity Corporation is available at * http://www.pingidentity.com/. * --%> |