public class OperationNotSupportedException extends CacheException
Constructor | Description |
---|---|
OperationNotSupportedException() |
Constructs an
OperationFailedException with null
as its error detail message. |
OperationNotSupportedException(int errorCode,
java.lang.String reason) |
Constructs a new OperationNotSupportedException with the specified errorCode and reason
|
OperationNotSupportedException(int errorCode,
java.lang.String reason,
java.lang.String stackTrace) |
Constructs a new OperationNotSupportedException with the specified errorCode and reason and stacktrace
|
OperationNotSupportedException(java.lang.String s) |
Constructs an
OperationFailedException with the specified detail
message. |
OperationNotSupportedException(java.lang.String message,
java.lang.Throwable cause) |
Constructs a new OperationNotSupportedException with the specified detail message and
cause.
|
OperationNotSupportedException(java.lang.Throwable cause) |
Constructs a new OperationNotSupportedException with the specified cause and a
detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause ). |
getErrorCode, printStackTrace, setErrorCode
public OperationNotSupportedException()
OperationFailedException
with null
as its error detail message.public OperationNotSupportedException(java.lang.String s)
OperationFailedException
with the specified detail
message. The error message string s
can later be
retrieved by the Throwable.getMessage()
method of class java.lang.Throwable
.s
- the detail message.public OperationNotSupportedException(int errorCode, java.lang.String reason)
errorCode
- assigned Error codereason
- detail messagepublic OperationNotSupportedException(java.lang.String message, java.lang.Throwable cause)
Note that the detail message associated with
cause
is not automatically incorporated in
this runtime exception's detail message.
message
- the detail message (which is saved for later retrieval
by the Throwable.getMessage()
method).cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)public OperationNotSupportedException(java.lang.Throwable cause)
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
). This constructor is useful for runtime exceptions
that are little more than wrappers for other throwables.cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method). (A null
value is
permitted, and indicates that the cause is nonexistent or
unknown.)public OperationNotSupportedException(int errorCode, java.lang.String reason, java.lang.String stackTrace)
errorCode
- assigned Error codereason
- detail messagestackTrace
- stackTrace