Constructors Summary |
---|
public TransformerFactoryConfigurationError()Create a new TransformerFactoryConfigurationError with no
detail mesage.
super();
this.exception = null;
|
public TransformerFactoryConfigurationError(String msg)Create a new TransformerFactoryConfigurationError with
the String specified as an error message.
super(msg);
this.exception = null;
|
public TransformerFactoryConfigurationError(Exception e)Create a new TransformerFactoryConfigurationError with a
given Exception base cause of the error.
super(e.toString());
this.exception = e;
|
public TransformerFactoryConfigurationError(Exception e, String msg)Create a new TransformerFactoryConfigurationError with the
given Exception base cause and detail message.
super(msg);
this.exception = e;
|