public class CommandServiceException
extends java.lang.Exception
Constructor and Description |
---|
CommandServiceException(java.lang.String message)
Constructs a new
CommandServiceException with the specified detail message. |
CommandServiceException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new
CommandServiceException with the specified detail message and
cause. |
CommandServiceException(java.lang.Throwable cause)
Constructs a new
CommandServiceException by wrapping the specified cause. |
public CommandServiceException(java.lang.String message, java.lang.Throwable cause)
CommandServiceException
with the specified detail message and
cause.message
- The detail message.cause
- The cause of this exception or null
if the cause is unknown.public CommandServiceException(java.lang.String message)
CommandServiceException
with the specified detail message.message
- The detail message.public CommandServiceException(java.lang.Throwable cause)
CommandServiceException
by wrapping the specified cause. The
detail for this exception will be null if the cause is null or cause.toString() if a cause is
provided.cause
- The cause of this exception or null
if the cause is unknown.