Class CacheException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.jcs3.access.exception.CacheException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConfigurationException
,InvalidArgumentException
,InvalidGroupException
,InvalidHandleException
,ObjectExistsException
,ObjectNotFoundException
This is the most general exception the cache throws.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultCacheException
(String message) Constructor for the CacheException objectCacheException
(String message, Throwable nested) Constructor for the CacheException objectCacheException
(Throwable nested) Constructor for the CacheException object -
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()Default -
CacheException
Constructor for the CacheException object- Parameters:
nested
- a nested exception
-
CacheException
Constructor for the CacheException object- Parameters:
message
- the exception message
-
CacheException
Constructor for the CacheException object- Parameters:
message
- the exception messagenested
- a nested exception
-