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