Class CacheWritingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.ehcache.spi.loaderwriter.CacheWritingException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BulkCacheWritingException

public class CacheWritingException extends RuntimeException
Thrown by a Cache when the CacheLoaderWriter fails when writing a value.
See Also:
  • Constructor Details

    • CacheWritingException

      public CacheWritingException()
      Constructs a CacheWritingException.
    • CacheWritingException

      public CacheWritingException(String message)
      Constructs a CacheWritingException with the provided message.
      Parameters:
      message - the detail message
    • CacheWritingException

      public CacheWritingException(String message, Throwable cause)
      Constructs a CacheWritingException wrapping the cause passed in and with the provided message.
      Parameters:
      message - the detail message
      cause - the root cause
    • CacheWritingException

      public CacheWritingException(Throwable cause)
      Constructs a CacheWritingException wrapping the cause passed in.
      Parameters:
      cause - the root cause