/* 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; /** * Thrown when context is invalid. * * @author Chris Wilper */ public class InvalidContextException extends ServerException { private static final long serialVersionUID = 1L; /** * Creates an InvalidContextException. * * @param message * An informative message explaining what happened and (possibly) how * to fix it. */ public InvalidContextException(String message) { super(null, message, null, null, null); } public InvalidContextException(String bundleName, String code, String[] replacements, String[] details, Throwable cause) { super(bundleName, code, replacements, details, cause); } }