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
public class IncomparableRouteMatchException extends Exception
An exception which is thrown when two incompatibleRouteMatch
instances are attempted to be compared.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IncomparableRouteMatchException(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 Detail
-
IncomparableRouteMatchException
public IncomparableRouteMatchException(RouteMatch firstRouteMatch, RouteMatch secondRouteMatch)
Constructs aIncomparableRouteMatchException
with the twoRouteMatch
instance that caused the exception.- Parameters:
firstRouteMatch
- The firstRouteMatch
instance.secondRouteMatch
- The secondRouteMatch
instance.
-
-