%@ page isErrorPage="true" %>
Sorry, an error occured. If the error persists, please inform us.
Error Message:
<%= exception.getMessage() %>
");
out.println(cw.toString());
out.println("");
if (ex.equals(exception.getCause())) // prevent infinite loop
break;
ex = exception.getCause();
}
%>