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 anOperationFailedExceptionwithnullas its error detail message.NotSupportedException(java.lang.String s)Constructs anOperationFailedExceptionwith 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 anOperationFailedExceptionwithnullas its error detail message.
-
NotSupportedException
public NotSupportedException(java.lang.String s)
Constructs anOperationFailedExceptionwith the specified detail message. The error message stringscan later be retrieved by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
s- the detail message.
-
-