Index: lams_bb_integration/web/error.jsp =================================================================== diff -u -r2d8a22624f79146eff859c52775648266d47b826 -r3c527d0998e4797bdfaefc359e036fa01a560ad9 --- lams_bb_integration/web/error.jsp (.../error.jsp) (revision 2d8a22624f79146eff859c52775648266d47b826) +++ lams_bb_integration/web/error.jsp (.../error.jsp) (revision 3c527d0998e4797bdfaefc359e036fa01a560ad9) @@ -1,19 +1,34 @@ -<%@ taglib uri="/bbUI" prefix="bbUI"%> +<%-- + 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); %> - -<%=strException%> -

-

-<%
-	// now display a stack trace of the exception
-  PrintWriter pw = new PrintWriter( out );
-  exception.printStackTrace( pw );
-%>
-
-

+ + + <%=strException%> +

+

+                    <%  // Display a stack trace of the exception
+                        PrintWriter pw = new PrintWriter( out );
+                        exception.printStackTrace( pw );
+                    %>
+                
+

+
+ +
\ No newline at end of file