public class ResourceNotFoundException
extends java.lang.RuntimeException
RuntimeException
indication that a Resource
could not be found.RuntimeException
,
Resource
,
Serialized FormConstructor and Description |
---|
ResourceNotFoundException()
|
ResourceNotFoundException(java.lang.String message)
Constructs a new instance of
ResourceNotFoundException initialized with the given message
to describe the error. |
ResourceNotFoundException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new instance of
ResourceNotFoundException initialized with the given message
describing the error along with a Throwable signifying the underlying cause of this
RuntimeException . |
ResourceNotFoundException(java.lang.Throwable cause)
Constructs a new instance of
ResourceNotFoundException initialized with the given Throwable
signifying the underlying cause of this RuntimeException . |
public ResourceNotFoundException()
public ResourceNotFoundException(java.lang.String message)
ResourceNotFoundException
initialized with the given message
to describe the error.message
- String
describing the RuntimeException
.public ResourceNotFoundException(java.lang.Throwable cause)
ResourceNotFoundException
initialized with the given Throwable
signifying the underlying cause of this RuntimeException
.cause
- Throwable
signifying the underlying cause of this RuntimeException
.Throwable
public ResourceNotFoundException(java.lang.String message, java.lang.Throwable cause)
ResourceNotFoundException
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