Constructors Summary |
---|
public CommandException(String msg)Construct a CommandException with the specified detail
message.
super(msg);
|
public CommandException(String msg, Throwable nested)Construct a CommandException with the specified detail
message and nested Throwable.
super(msg, nested);
|
public CommandException(Throwable nested)Construct a CommandException with the specified
nested Throwable.
super(nested);
|
public CommandException()Construct a CommandException with no detail.
super();
|