Constructors Summary |
---|
public CommandException()Creates new CommandException without detail message.
|
public CommandException(String msg)Constructs an CommandException with the specified detail message.
super(msg);
|
public CommandException(Throwable cause)Constructs a new CommandException exception with the specified
cause
super(cause);
|
public CommandException(String msg, Throwable cause)Constructs a new CommandException exception with the specified
detailed message and cause
super(msg, cause);
|