%--
Original Version: 2007 LAMS Foundation
Updated for Blackboard 9.1 SP6 (including new bbNG tag library) 2011
Richard Stals (www.stals.com.au)
Edith Cowan University, Western Australia
--%>
<%--
General Error Page
Print out the Exception Messsage and full stack trace
--%>
<%@ page import="java.io.PrintWriter"%>
<%@ page isErrorPage = "true" %>
<%@ taglib uri="/bbNG" prefix="bbNG"%>
<%
String strException = exception.getMessage();
response.setStatus(response.SC_INTERNAL_SERVER_ERROR);
%>
<% // Display a stack trace of the exception
PrintWriter pw = new PrintWriter( out );
exception.printStackTrace( pw );
%>