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