Class ResourceDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.geode.core.io.ResourceDataAccessException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ResourceReadException
,ResourceWriteException
A Java
RuntimeException
indicating a problem accessing (e.g. reading/writing) the data
of the target Resource
.- Since:
- 1.3.1
- See Also:
-
RuntimeException
Resource
- Serialized Form
-
Constructor Summary
ConstructorDescriptionResourceDataAccessException
(String message) Constructs a new instance ofResourceDataAccessException
initialized with the givenmessage
to describe the error.ResourceDataAccessException
(String message, Throwable cause) Constructs a new instance ofResourceDataAccessException
initialized with the givenmessage
describing the error along with aThrowable
signifying the underlying cause of thisRuntimeException
.Constructs a new instance ofResourceDataAccessException
initialized with the givenThrowable
signifying the underlying cause of thisRuntimeException
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResourceDataAccessException
public ResourceDataAccessException() -
ResourceDataAccessException
Constructs a new instance ofResourceDataAccessException
initialized with the givenmessage
to describe the error.- Parameters:
message
-String
describing theRuntimeException
.
-
ResourceDataAccessException
Constructs a new instance ofResourceDataAccessException
initialized with the givenThrowable
signifying the underlying cause of thisRuntimeException
.- Parameters:
cause
-Throwable
signifying the underlying cause of thisRuntimeException
.- See Also:
-
ResourceDataAccessException
Constructs a new instance ofResourceDataAccessException
initialized with the givenmessage
describing the error along with aThrowable
signifying the underlying cause of thisRuntimeException
.- Parameters:
message
-String
describing theRuntimeException
.cause
-Throwable
signifying the underlying cause of thisRuntimeException
.- See Also:
-