Package org.ehcache.spi.loaderwriter
Class CacheWritingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ehcache.spi.loaderwriter.CacheWritingException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
BulkCacheWritingException
public class CacheWritingException extends java.lang.RuntimeExceptionThrown by aCachewhen theCacheLoaderWriterfails when writing a value.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description CacheWritingException()Constructs aCacheWritingException.CacheWritingException(java.lang.String message)Constructs aCacheWritingExceptionwith the provided message.CacheWritingException(java.lang.String message, java.lang.Throwable cause)Constructs aCacheWritingExceptionwrapping thecausepassed in and with the provided message.CacheWritingException(java.lang.Throwable cause)Constructs aCacheWritingExceptionwrapping thecausepassed in.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CacheWritingException
public CacheWritingException()
Constructs aCacheWritingException.
-
CacheWritingException
public CacheWritingException(java.lang.String message)
Constructs aCacheWritingExceptionwith the provided message.- Parameters:
message- the detail message
-
CacheWritingException
public CacheWritingException(java.lang.String message, java.lang.Throwable cause)Constructs aCacheWritingExceptionwrapping thecausepassed in and with the provided message.- Parameters:
message- the detail messagecause- the root cause
-
CacheWritingException
public CacheWritingException(java.lang.Throwable cause)
Constructs aCacheWritingExceptionwrapping thecausepassed in.- Parameters:
cause- the root cause
-
-