package org.apache.xml.dtm; import javax.xml.transform.SourceLocator; /** * Indicates a serious configuration error. */ public class DTMConfigurationException extends DTMException { /** * Create a new <code>DTMConfigurationException</code> with no * detail mesage. */ public DTMConfigurationException() { super("Configuration Error"); } /** * Create a new <code>DTMConfigurationException</code> with * the <code>String </code> specified as an error message. * * @param msg The error message for the exception. */ public DTMConfigurationException(String msg) { super(msg); } /** * Create a new <code>DTMConfigurationException</code> with a * given <code>Exception</code> base cause of the error. * * @param e The exception to be encapsulated in a * DTMConfigurationException. */ public DTMConfigurationException(Throwable e) { super(e); } /** * Create a new <code>DTMConfigurationException</code> with the * given <code>Exception</code> base cause and detail message. * * @param e The exception to be encapsulated in a * DTMConfigurationException * @param msg The detail message. * @param e The exception to be wrapped in a DTMConfigurationException */ public DTMConfigurationException(String msg, Throwable e) { super(msg, e); } /** * Create a new DTMConfigurationException from a message and a Locator. * * <p>This constructor is especially useful when an application is * creating its own exception from within a DocumentHandler * callback.</p> * * @param message The error or warning message. * @param locator The locator object for the error or warning. */ public DTMConfigurationException(String message, SourceLocator locator) { super(message, locator); } /** * Wrap an existing exception in a DTMConfigurationException. * * @param message The error or warning message, or null to * use the message from the embedded exception. * @param locator The locator object for the error or warning. * @param e Any exception. */ public DTMConfigurationException(String message, SourceLocator locator, Throwable e) { super(message, locator, e); } }