Name

TransformerFactoryConfigurationError

Synopsis

This error class signals a fatal problem while creating a TransformerFactory. It usually signals a configuration problem, such as the system property javax.xml.transform.TransformerFactory has a value that is not a valid classname, or that the class path does not contain the specified factory implementation class.

javax.xml.transform.TransformerFactoryConfigurationError

Figure 20-7. javax.xml.transform.TransformerFactoryConfigurationError

public class TransformerFactoryConfigurationError extends Error {
// Public Constructors
     public TransformerFactoryConfigurationError( );  
     public TransformerFactoryConfigurationError(String msg);  
     public TransformerFactoryConfigurationError(Exception e);  
     public TransformerFactoryConfigurationError(Exception e, String msg);  
// Public Instance Methods
     public Exception getException( );                                    default:null
                  // Public Methods Overriding Throwable
     public String getMessage( );                                         default:null
}

Thrown By

TransformerFactory.newInstance( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.