Package org.ehcache.spi.resilience
Class StoreAccessException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ehcache.spi.resilience.StoreAccessException
-
- All Implemented Interfaces:
java.io.Serializable
public class StoreAccessException extends java.lang.ExceptionGeneric exception used when an internal operation fails on aCache.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description StoreAccessException(java.lang.String message)Creates a new exception with the provided message.StoreAccessException(java.lang.String message, java.lang.Throwable cause)Creates a new exception wrapping thecausepassed in and with the provided message.StoreAccessException(java.lang.Throwable cause)Creates a new exception wrapping thecausepassed in.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StoreAccessException
public StoreAccessException(java.lang.Throwable cause)
Creates a new exception wrapping thecausepassed in.- Parameters:
cause- the cause of this exception
-
StoreAccessException
public StoreAccessException(java.lang.String message, java.lang.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(java.lang.String message)
Creates a new exception with the provided message.- Parameters:
message- information about the exception
-
-