Class ResourceException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
LowMemoryException

public abstract class ResourceException extends CacheRuntimeException
A Generic exception to indicate that a resource exception has occurred. This class is abstract so that only subclasses can be instantiated.
Since:
GemFire 6.0
See Also:
  • Constructor Details

    • ResourceException

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

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

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

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