Package com.j_spaces.javax.cache
Class CacheException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.j_spaces.javax.cache.CacheException
- All Implemented Interfaces:
Serializable
Deprecated.
Description: CacheException is a generic exception, which indicates a cache error has occurred.
- Since:
- 5.0
- Version:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Constructs a new CacheException.CacheException(String message) Deprecated.Constructs a new CacheException with a message string.CacheException(String message, Throwable cause) Deprecated.Constructs a CacheException with a message string, and a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CacheException
public CacheException()Deprecated.Constructs a new CacheException. -
CacheException
Deprecated.Constructs a new CacheException with a message string.- Parameters:
message- the detail message
-
CacheException
Deprecated.Constructs a CacheException with a message string, and a cause.- Parameters:
message- the detail messagecause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-