Package org.refcodes.interceptor
Class InterceptorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.refcodes.exception.AbstractException
-
- org.refcodes.interceptor.InterceptorException
-
- Direct Known Subclasses:
WorkPieceException
public abstract class InterceptorException extends org.refcodes.exception.AbstractExceptionBase exception for the interceptor artifact.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
-
-
Constructor Summary
Constructors Constructor Description InterceptorException(java.lang.String message)Instantiates a new interceptor exception.InterceptorException(java.lang.String aMessage, java.lang.String aErrorCode)Instantiates a new interceptor exception.InterceptorException(java.lang.String message, java.lang.Throwable cause)Instantiates a new interceptor exception.InterceptorException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new interceptor exception.InterceptorException(java.lang.Throwable cause)Instantiates a new interceptor exception.InterceptorException(java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new interceptor exception.
-
-
-
Constructor Detail
-
InterceptorException
public InterceptorException(java.lang.String aMessage, java.lang.String aErrorCode)Instantiates a new interceptor exception.- Parameters:
aMessage- the messageaErrorCode- the error code
-
InterceptorException
public InterceptorException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new interceptor exception.- Parameters:
aMessage- the messageaCause- the causeaErrorCode- the error code
-
InterceptorException
public InterceptorException(java.lang.String message, java.lang.Throwable cause)Instantiates a new interceptor exception.- Parameters:
message- the messagecause- the cause
-
InterceptorException
public InterceptorException(java.lang.String message)
Instantiates a new interceptor exception.- Parameters:
message- the message
-
InterceptorException
public InterceptorException(java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new interceptor exception.- Parameters:
aCause- the causeaErrorCode- the error code
-
InterceptorException
public InterceptorException(java.lang.Throwable cause)
Instantiates a new interceptor exception.- Parameters:
cause- the cause
-
-