Class CacheException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CacheExistsException, EntryExistsException, EntryNotFoundException, RegionExistsException, TransactionException

public abstract class CacheException extends GemFireException
A generic exception, which indicates a cache error has occurred. All the other cache exceptions are subclasses of this class. This class is abstract and therefore only subclasses are instantiated.
Since:
GemFire 2.0
See Also:
  • Constructor Details

    • CacheException

      public CacheException()
      Constructs a new CacheException.
    • CacheException

      public CacheException(String s)
      Constructs a new CacheException with a message string.
      Parameters:
      s - the detail message
    • CacheException

      public CacheException(String s, Throwable cause)
      Constructs a CacheException with a message string and a base exception
      Parameters:
      s - the detail message
      cause - the cause
    • CacheException

      public CacheException(Throwable cause)
      Constructs a CacheException with a cause
      Parameters:
      cause - the cause
  • Method Details