public class SlingException extends RuntimeException
SlingException
is the base exception used throughout the
Sling API. This exception should only be thrown if there is no more specific
exception defined in the Sling API for the cause and if a cause can be
supplied. Otherwise the more specific exception must be used.
The SlingException
is a RuntimeException
because this exception is not intended to be caught by client code. Rather
this exception (and extensions thereof) should be passed through up to the
actual Sling error and exception handling.
Modifier | Constructor and Description |
---|---|
protected |
SlingException()
Constructs a new Sling exception.
|
protected |
SlingException(String text)
Constructs a new Sling exception with the given text.
|
|
SlingException(String text,
Throwable cause)
Constructs a new Sling exception when the Servlet needs to do the
following:
throw an exception
include the "root cause" exception
include a description message
|
protected |
SlingException(Throwable cause)
Constructs a new Sling exception when the Servlet needs to throw an
exception.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
protected SlingException()
protected SlingException(String text)
text
- the exception textpublic SlingException(String text, Throwable cause)
text
- the exception textcause
- the root causeprotected SlingException(Throwable cause)
cause
- the root causeCopyright © 2017 The Apache Software Foundation. All rights reserved.