java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.service.registry.EventDispatchException
- All Implemented Interfaces:
Serializable
This exception is thrown when event dispatching fails.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEventDispatchException
(String message, Throwable cause) Create an exception with the first encountered exception as the cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EventDispatchException
Create an exception with the first encountered exception as the cause. Additional exceptions (if encountered) are added asThrowable.getSuppressed()
.- Parameters:
message
- descriptive messagecause
- cause of the failure
-