Constructors Summary |
---|
public FactoryConfigurationError()Default constructor
|
public FactoryConfigurationError(Exception e)Construct an exception with a nested inner exception
nested = e;
|
public FactoryConfigurationError(Exception e, String msg)Construct an exception with a nested inner exception
and a message
super(msg);
nested = e;
|
public FactoryConfigurationError(String msg, Exception e)Construct an exception with a nested inner exception
and a message
super(msg);
nested = e;
|
public FactoryConfigurationError(String msg)Construct an exception with associated message
super(msg);
|