/* The contents of this file are subject to the license and copyright terms * detailed in the license directory at the root of the source tree (also * available online at http://fedora-commons.org/license/). */ package fedora.server.errors.servletExceptionExtensions; import javax.servlet.http.HttpServletRequest; /** * Thrown to reach 500-Internal Server Error error page. * * @author Bill Niebel */ public class InternalError500Exception extends RootException { private static final long serialVersionUID = 1L; public InternalError500Exception(HttpServletRequest request, String action, String detail, String[] details) { super(request, action, detail, details); } public InternalError500Exception(String message, HttpServletRequest request, String action, String detail, String[] details) { super(message, request, action, detail, details); } public InternalError500Exception(String message, Throwable cause, HttpServletRequest request, String action, String detail, String[] details) { super(message, cause, request, action, detail, details); } }