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