Gemfire JavaDocs
Package org.apache.geode.cache
Class ResourceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.cache.CacheRuntimeException
-
- org.apache.geode.cache.ResourceException
-
- All Implemented Interfaces:
java.io.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceException()
Creates a new instance ofResourceException
without detail message.ResourceException(java.lang.String msg)
Constructs an instance ofResourceException
with the specified detail message.ResourceException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofResourceException
with the specified detail message and cause.ResourceException(java.lang.Throwable cause)
Constructs an instance ofResourceException
with the specified cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
ResourceException
public ResourceException()
Creates a new instance ofResourceException
without detail message.
-
ResourceException
public ResourceException(java.lang.String msg)
Constructs an instance ofResourceException
with the specified detail message.- Parameters:
msg
- the detail message
-
ResourceException
public ResourceException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofResourceException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the causal Throwable
-
ResourceException
public ResourceException(java.lang.Throwable cause)
Constructs an instance ofResourceException
with the specified cause.- Parameters:
cause
- the causal Throwable
-
-