Class CacheLoaderException

All Implemented Interfaces:
Serializable

public class CacheLoaderException extends OperationAbortedException
Thrown from the CacheLoader.load(org.apache.geode.cache.LoaderHelper<K, V>) method indicating that an error occurred when a CacheLoader was attempting to load a value. This exception is propagated back to the caller of Region.get.
Since:
GemFire 3.0
See Also:
  • Constructor Details

    • CacheLoaderException

      public CacheLoaderException()
      Creates a new instance of CacheLoaderException.
    • CacheLoaderException

      public CacheLoaderException(String msg)
      Constructs an instance of CacheLoaderException with the specified detail message.
      Parameters:
      msg - the detail message
    • CacheLoaderException

      public CacheLoaderException(String msg, Throwable cause)
      Constructs an instance of CacheLoaderException with the specified detail message and cause.
      Parameters:
      msg - the detail message
      cause - the causal Throwable
    • CacheLoaderException

      public CacheLoaderException(Throwable cause)
      Constructs an instance of CacheLoaderException with the specified cause.
      Parameters:
      cause - the causal Throwable