Class CacheRuntimeException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CacheXmlException, CancelException, CqClosedException, DiskAccessException, EntryDestroyedException, FailedSynchronizationException, IndexMaintenanceException, OperationAbortedException, PartitionedRegionDistributionException, PartitionedRegionStorageException, QueryExecutionLowMemoryException, QueryExecutionTimeoutException, RegionDestroyedException, RegionNotFoundException, ResourceException, RoleException, StatisticsDisabledException, SynchronizationCommitConflictException

public abstract class CacheRuntimeException extends GemFireException
A generic runtime exception that indicates a cache error has occurred. All the other runtime cache exceptions are the subclass of this class. This class is abstract so only subclasses can be instantiated
Since:
GemFire 3.0
See Also:
  • Constructor Details

    • CacheRuntimeException

      public CacheRuntimeException()
      Creates a new instance of CacheRuntimeException without detail message.
    • CacheRuntimeException

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

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

      public CacheRuntimeException(Throwable cause)
      Constructs an instance of CacheRuntimeException with the specified cause.
      Parameters:
      cause - the causal Throwable
  • Method Details