Package org.apache.camel.spi
Interface RouteError
public interface RouteError
The last error that happened during changing the route lifecycle, i.e. such as when an exception was thrown during
starting the route.
This is only errors for route lifecycle changes, it is not exceptions thrown during routing messsages with the Camel
routing engine.
-
Method Details
-
getPhase
RouteError.Phase getPhase()Gets the phase associated with the error.- Returns:
- the phase.
-
getException
Throwable getException()Gets the error.- Returns:
- the error.
-
isUnhealthy
boolean isUnhealthy()Whether the route is regarded as unhealthy. -
getDate
Date getDate()The date and time when this error happened
-