<%@ page isErrorPage="true" %> <%@ page import="com.ecyrd.jspwiki.log.Logger" %> <%@ page import="com.ecyrd.jspwiki.log.LoggerFactory" %> <%@ page import="com.ecyrd.jspwiki.*" %> <%@ page import="com.ecyrd.jspwiki.action.*" %> <%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %> <%@ taglib uri="/WEB-INF/stripes.tld" prefix="stripes" %> <%! Logger log = LoggerFactory.getLogger("JSPWiki"); %> <% WikiEngine wiki = WikiEngine.getInstance( getServletConfig() ); WikiActionBean wikiContext = WikiActionBeanFactory.findActionBean( request ); response.setContentType("text/html; charset="+wiki.getContentEncoding() ); String msg = "An unknown error was caught by Error.jsp"; Throwable realcause = null; if( exception != null ) { msg = exception.getMessage(); if( msg == null || msg.length() == 0 ) { msg = "An unknown exception "+exception.getClass().getName()+" was caught by Error.jsp."; } // // This allows us to get the actual cause of the exception. // Note the cast; at least Tomcat has two classes called "JspException" // imported in JSP pages. // if( exception instanceof javax.servlet.jsp.JspException ) { log.debug("IS JSPEXCEPTION"); realcause = ((javax.servlet.jsp.JspException)exception).getRootCause(); log.debug("REALCAUSE="+realcause); } if( realcause == null ) realcause = exception; } else { realcause = new Exception("Unknown general exception"); } log.debug("Error.jsp exception is: ",exception); wikiContext.getWikiSession().addMessage( msg ); %>

JSPWiki has detected an error

Error Message
Exception
<%=realcause.getClass().getName()%>
Place where detected
<%=FileUtil.getThrowingMethod(realcause)%>

If you have changed the templates, please do check them. This error message may show up because of that. If you have not changed them, and you are either installing JSPWiki for the first time or have changed configuration, then you might want to check your configuration files. If you are absolutely sure that JSPWiki was running quite okay or you can't figure out what is going on, then by all means, come over to jspwiki.org and tell us. There is more information in the log file (like the full stack trace, which you should add to any error report).

And don't worry - it's just a computer program. Nothing really serious is probably going on: at worst you can lose a few nights sleep. It's not like it's the end of the world.