Package org.forgerock.services.routing
Class IncomparableRouteMatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.services.routing.IncomparableRouteMatchException
- All Implemented Interfaces:
Serializable
An exception which is thrown when two incompatible
RouteMatch
instances are attempted to be compared.- See Also:
-
Constructor Summary
ConstructorDescriptionIncomparableRouteMatchException
(RouteMatch firstRouteMatch, RouteMatch secondRouteMatch) Constructs aIncomparableRouteMatchException
with the twoRouteMatch
instance that caused the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IncomparableRouteMatchException
Constructs aIncomparableRouteMatchException
with the twoRouteMatch
instance that caused the exception.- Parameters:
firstRouteMatch
- The firstRouteMatch
instance.secondRouteMatch
- The secondRouteMatch
instance.
-