Package org.ehcache.spi.resilience
Class StoreAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.ehcache.spi.resilience.StoreAccessException
- All Implemented Interfaces:
Serializable
Generic exception used when an internal operation fails on a
Cache.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStoreAccessException(String message) Creates a new exception with the provided message.StoreAccessException(String message, Throwable cause) Creates a new exception wrapping thecausepassed in and with the provided message.StoreAccessException(Throwable cause) Creates a new exception wrapping thecausepassed in. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StoreAccessException
Creates a new exception wrapping thecausepassed in.- Parameters:
cause- the cause of this exception
-
StoreAccessException
Creates a new exception wrapping thecausepassed in and with the provided message.- Parameters:
message- information about the exceptioncause- the cause of this exception
-
StoreAccessException
Creates a new exception with the provided message.- Parameters:
message- information about the exception
-