dtmconfigurationexception.java
来自「java jdk 1.4的源码」· Java 代码 · 共 80 行
JAVA
80 行
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); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?