FileDocCategorySizeDatePackage
DTMConfigurationException.javaAPI DocJava SE 6 API3225Tue Jun 10 00:22:56 BST 2008com.sun.org.apache.xml.internal.dtm

DTMConfigurationException

public class DTMConfigurationException extends DTMException
Indicates a serious configuration error.

Fields Summary
static final long
serialVersionUID
Constructors Summary
public DTMConfigurationException()
Create a new DTMConfigurationException with no detail mesage.


                 
      
        super("Configuration Error");
    
public DTMConfigurationException(String msg)
Create a new DTMConfigurationException with the String specified as an error message.

param
msg The error message for the exception.

        super(msg);
    
public DTMConfigurationException(Throwable e)
Create a new DTMConfigurationException with a given Exception base cause of the error.

param
e The exception to be encapsulated in a DTMConfigurationException.

        super(e);
    
public DTMConfigurationException(String msg, Throwable e)
Create a new DTMConfigurationException with the given Exception base cause and detail message.

param
msg The detail message.
param
e The exception to be wrapped in a DTMConfigurationException

        super(msg, e);
    
public DTMConfigurationException(String message, SourceLocator locator)
Create a new DTMConfigurationException from a message and a Locator.

This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback.

param
message The error or warning message.
param
locator The locator object for the error or warning.

        super(message, locator);
    
public DTMConfigurationException(String message, SourceLocator locator, Throwable e)
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.

        super(message, locator, e);
    
Methods Summary