public class UnhandledResourceException
extends java.lang.RuntimeException
RuntimeException
indicating that a Resource
was not properly handled during normal processing.RuntimeException
,
Resource
,
Serialized FormConstructor and Description |
---|
UnhandledResourceException()
|
UnhandledResourceException(java.lang.String message)
Constructs a new instance of
UnhandledResourceException initialized with the given message
to describe the error. |
UnhandledResourceException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new instance of
UnhandledResourceException initialized with the given message
describing the error along with a Throwable signifying the underlying cause of this
RuntimeException . |
UnhandledResourceException(java.lang.Throwable cause)
Constructs a new instance of
UnhandledResourceException initialized with the given Throwable
signifying the underlying cause of this RuntimeException . |
public UnhandledResourceException()
public UnhandledResourceException(java.lang.String message)
UnhandledResourceException
initialized with the given message
to describe the error.message
- String
describing the RuntimeException
.public UnhandledResourceException(java.lang.Throwable cause)
UnhandledResourceException
initialized with the given Throwable
signifying the underlying cause of this RuntimeException
.cause
- Throwable
signifying the underlying cause of this RuntimeException
.Throwable
public UnhandledResourceException(java.lang.String message, java.lang.Throwable cause)
UnhandledResourceException
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