Class CacheLoadingException

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

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

    • CacheLoadingException

      public CacheLoadingException()
      Constructs a CacheLoadingException.
    • CacheLoadingException

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

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

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