FileDocCategorySizeDatePackage
TransformerConfigurationException.javaAPI DocJava SE 6 API3498Tue Jun 10 00:27:12 BST 2008javax.xml.transform

TransformerConfigurationException

public class TransformerConfigurationException extends TransformerException
Indicates a serious configuration error.

Fields Summary
Constructors Summary
public TransformerConfigurationException()
Create a new TransformerConfigurationException with no detail mesage.

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

param
msg The error message for the exception.

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

param
e The exception to be encapsulated in a TransformerConfigurationException.

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

param
e The exception to be encapsulated in a TransformerConfigurationException
param
msg The detail message.

        super(msg, e);
    
public TransformerConfigurationException(String message, SourceLocator locator)
Create a new TransformerConfigurationException 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 TransformerConfigurationException(String message, SourceLocator locator, Throwable e)
Wrap an existing exception in a TransformerConfigurationException.

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