%@ page buffer="512kb" autoFlush="false" import="java.io.*, org.thdl.lex.*,org.thdl.lex.component.*" isErrorPage="true" %> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
You have reached the Error page.
This page indicates that Lex has caught an exception that it does not know how to deal with.
The message appears below.
Return to the home page.
Message: <%= exception.getMessage() %>
<% if (request.getAttribute("comp") != null)
{ LexComponent lab = (LexComponent) request.getAttribute("comp");
%>
Label: <%= lab %>
<% } %>
Stack Trace:
<% StringWriter writer = new StringWriter();
exception.printStackTrace( new PrintWriter(writer) );
String stackTrace = writer.getBuffer().toString();
%>
<%= stackTrace %>