public class ResourceDataAccessException
extends java.lang.RuntimeException
RuntimeException
indicating a problem accessing (e.g. reading/writing) the data
of the target Resource
.RuntimeException
,
Resource
,
Serialized FormConstructor and Description |
---|
ResourceDataAccessException()
|
ResourceDataAccessException(java.lang.String message)
Constructs a new instance of
ResourceDataAccessException initialized with the given message
to describe the error. |
ResourceDataAccessException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new instance of
ResourceDataAccessException initialized with the given message
describing the error along with a Throwable signifying the underlying cause of this
RuntimeException . |
ResourceDataAccessException(java.lang.Throwable cause)
Constructs a new instance of
ResourceDataAccessException initialized with the given Throwable
signifying the underlying cause of this RuntimeException . |
public ResourceDataAccessException()
public ResourceDataAccessException(java.lang.String message)
ResourceDataAccessException
initialized with the given message
to describe the error.message
- String
describing the RuntimeException
.public ResourceDataAccessException(java.lang.Throwable cause)
ResourceDataAccessException
initialized with the given Throwable
signifying the underlying cause of this RuntimeException
.cause
- Throwable
signifying the underlying cause of this RuntimeException
.Throwable
public ResourceDataAccessException(java.lang.String message, java.lang.Throwable cause)
ResourceDataAccessException
initialized with the given message
describing the error along with a Throwable
signifying the underlying cause of this
RuntimeException
.message
- String
describing the RuntimeException
.cause
- Throwable
signifying the underlying cause of this RuntimeException
.Throwable