Class InterceptorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.microbean.interceptor.InterceptorException
- All Implemented Interfaces:
Serializable
A
RuntimeException
indicating that an error has occurred
while setting up an interception chain.- Author:
- Laird Nelson
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newInterceptorException
.InterceptorException
(String message) Creates a newInterceptorException
.InterceptorException
(String message, Throwable cause) Creates a newInterceptorException
.InterceptorException
(Throwable cause) Creates a newInterceptorException
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InterceptorException
public InterceptorException()Creates a newInterceptorException
. -
InterceptorException
Creates a newInterceptorException
.- Parameters:
message
- a message describing the error; may benull
-
InterceptorException
Creates a newInterceptorException
.- Parameters:
cause
- theThrowable
that caused thisInterceptorException
to be thrown; may benull
-
InterceptorException
Creates a newInterceptorException
.- Parameters:
message
- a message describing the error; may benull
cause
- theThrowable
that caused thisInterceptorException
to be thrown; may benull
-