Class NotSupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.CacheException
-
- com.alachisoft.ncache.runtime.exceptions.NotSupportedException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotSupportedException extends CacheException
Throws when a specific Item is not supported in NCache Java Client- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotSupportedException()
Constructs anOperationFailedException
withnull
as its error detail message.NotSupportedException​(java.lang.String s)
Constructs anOperationFailedException
with the specified detail message.
-
Method Summary
-
Methods inherited from class com.alachisoft.ncache.runtime.exceptions.CacheException
getErrorCode, printStackTrace, setErrorCode
-
-
-
-
Constructor Detail
-
NotSupportedException
public NotSupportedException()
Constructs anOperationFailedException
withnull
as its error detail message.
-
NotSupportedException
public NotSupportedException​(java.lang.String s)
Constructs anOperationFailedException
with the specified detail message. The error message strings
can later be retrieved by the
method of classThrowable.getMessage()
java.lang.Throwable
.- Parameters:
s
- the detail message.
-
-