Class ServiceRegistryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.commandhandling.distributed.ServiceRegistryException
- All Implemented Interfaces:
Serializable
Exception that is triggered when an error occurs that is related to the registration or deregistration of a member to
the distributed command bus service registry.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionServiceRegistryException(String message) Initializes the exception using the givenmessage.ServiceRegistryException(String message, Throwable cause) Initializes the exception using the givenmessageandcause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceRegistryException
Initializes the exception using the givenmessage.- Parameters:
message- The message describing the exception
-
ServiceRegistryException
Initializes the exception using the givenmessageandcause.- Parameters:
message- The message describing the exceptioncause- The underlying cause of the exception
-