<%-- Error Messages --%>
<%
if (exception != null) {
%>
<%
exception.printStackTrace(new java.io.PrintWriter(out));
%>
<%
} else if ((Exception) request
.getAttribute("javax.servlet.error.exception") != null) {
%>
<%
((Exception) request
.getAttribute("javax.servlet.error.exception"))
.printStackTrace(new java.io.PrintWriter(out));
%>
<%
} else if (pageContext
.findAttribute("org.apache.struts.action.EXCEPTION") != null) {
%>
<%
exception2.printStackTrace(new java.io.PrintWriter(out));
%>
<%-- only show this if no error messages present --%>
<%
}
%>