Class TrackingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.fluxcapacitor.javaclient.tracking.TrackingException
- All Implemented Interfaces:
Serializable
Exception thrown during the initialization of message tracking in Flux Capacitor.
This exception indicates a configuration or startup problem when assigning handlers to consumers or when attempting to initiate tracking more than once for the same consumer configuration.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTrackingException
(String message) Constructs a newTrackingException
with the specified message.TrackingException
(String message, Throwable cause) Constructs a newTrackingException
with the specified message and 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
-
TrackingException
Constructs a newTrackingException
with the specified message and cause.- Parameters:
message
- the detail messagecause
- the root cause
-
TrackingException
Constructs a newTrackingException
with the specified message.- Parameters:
message
- the detail message
-