Class CommandException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.CacheException
-
- com.alachisoft.ncache.runtime.exceptions.CommandException
-
- All Implemented Interfaces:
java.io.Serializable
public final class CommandException extends CacheException
Throws this exception when the issue in executing command- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommandException()Constructs anCommandExceptionwithnullas its error detail message.CommandException(java.lang.String s)Constructs anCommandExceptionwith the specified detail message.
-
Method Summary
-
Methods inherited from class com.alachisoft.ncache.runtime.exceptions.CacheException
getErrorCode, printStackTrace, setErrorCode
-
-
-
-
Constructor Detail
-
CommandException
public CommandException()
Constructs anCommandExceptionwithnullas its error detail message.
-
CommandException
public CommandException(java.lang.String s)
Constructs anCommandExceptionwith the specified detail message. The error message stringscan later be retrieved by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
s- the detail message.
-
-