java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.service.registry.ServiceRegistryException
io.helidon.service.registry.InterceptionException
- All Implemented Interfaces:
- Serializable
Wraps any checked exceptions that are thrown during the 
Interception.Interceptor
 invocations.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionInterceptionException(String msg, boolean targetWasCalled) Constructor.InterceptionException(String msg, Throwable cause, boolean targetWasCalled) Constructor.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns true if the final target of interception was ultimately called.Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InterceptionExceptionConstructor.- Parameters:
- msg- the message
- targetWasCalled- set to true if the target of interception was ultimately called successfully
 
- 
InterceptionExceptionConstructor.- Parameters:
- msg- the message
- cause- the root cause
- targetWasCalled- set to true if the target of interception was ultimately called successfully
 
 
- 
- 
Method Details- 
targetWasCalledpublic boolean targetWasCalled()Returns true if the final target of interception was ultimately called.- Returns:
- if the target being intercepted was ultimately called successfully
 
 
-