Constructors Summary |
---|
public EnhancerFatalError()Constructs an EnhancerFatalError with no detail message.
this.nested = null;
|
public EnhancerFatalError(String msg)Constructs an EnhancerFatalError with the specified
detail message.
super(msg);
this.nested = null;
|
public EnhancerFatalError(Throwable nested)Constructs an EnhancerFatalError with an optional
nested exception.
super(nested.toString());
this.nested = nested;
|
public EnhancerFatalError(String msg, Throwable nested)Constructs an EnhancerFatalError with the specified
detail message and an optional nested exception.
super(msg);
this.nested = nested;
|