<%-- - $RCSfile$ - $Revision$ - $Date$ --%> <%@ page import="java.io.*, org.jivesoftware.util.ParamUtils, org.jivesoftware.util.JiveGlobals, org.jivesoftware.openfire.auth.UnauthorizedException, org.jivesoftware.openfire.user.UserNotFoundException, org.jivesoftware.openfire.group.GroupNotFoundException" isErrorPage="true" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <% boolean debug = "true".equals(JiveGlobals.getProperty("skin.default.debug")); if (debug) { exception.printStackTrace(); } %> <% if (exception instanceof UnauthorizedException) { %>

<% } else if (exception instanceof UserNotFoundException) { String username = ParamUtils.getParameter(request,"username"); %>

<% if (username == null) { %> <% } else { %> <% } %>

<% } else if (exception instanceof GroupNotFoundException) { %>

<% } %> <% if (exception != null) { StringWriter sout = new StringWriter(); PrintWriter pout = new PrintWriter(sout); exception.printStackTrace(pout); %>
<%= sout.toString() %>
    
<% } %>