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