Package com.hazelcast.client
Class UnsupportedRoutingModeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.hazelcast.core.HazelcastException
com.hazelcast.client.UnsupportedRoutingModeException
- All Implemented Interfaces:
Serializable
An UnsupportedRoutingModeException is thrown when a Hazelcast Client
is configured with a
RoutingMode
that is not supported by the cluster.
For example, a client configured with routing mode:
RoutingMode.MULTI_MEMBER
and RoutingStrategy
RoutingStrategy.PARTITION_GROUPS
will be unable to connect to a cluster that is not correctly licensed
to send partition group info.
- See Also:
-
Constructor Summary
ConstructorDescriptionUnsupportedRoutingModeException
(String message) Creates an UnsupportedRoutingModeException with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedRoutingModeException
Creates an UnsupportedRoutingModeException with the given message.- Parameters:
message
- the message for the exception
-