<%-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --%> <%@ page isErrorPage="true" %> <%@ page import="org.apache.log4j.*" %> <%@ page import="org.apache.wiki.*" %> <%@ page import="org.apache.wiki.util.FileUtil" %> <%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %> <%! Logger log = Logger.getLogger("JSPWiki"); %> <% WikiEngine wiki = WikiEngine.getInstance( getServletConfig() ); WikiContext wikiContext = wiki.createContext( request, WikiContext.ERROR ); String pagereq = wikiContext.getName(); 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.