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
public class StoreAccessException extends Exception
Generic exception used when an internal operation fails on aCache.- Author:
- cdennis
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StoreAccessException(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 Detail
-
StoreAccessException
public StoreAccessException(Throwable cause)
Creates a new exception wrapping thecausepassed in.- Parameters:
cause- the cause of this exception
-
StoreAccessException
public StoreAccessException(String message, Throwable cause)
Creates a new exception wrapping thecausepassed in and with the provided message.- Parameters:
message- information about the exceptioncause- the cause of this exception
-
StoreAccessException
public StoreAccessException(String message)
Creates a new exception with the provided message.- Parameters:
message- information about the exception
-
-