Package com.hazelcast.cp.exception
Class NotLeaderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.hazelcast.core.HazelcastException
-
- com.hazelcast.cp.exception.CPSubsystemException
-
- com.hazelcast.cp.exception.NotLeaderException
-
- All Implemented Interfaces:
com.hazelcast.spi.impl.operationservice.WrappableException<CPSubsystemException>
,java.io.Serializable
public class NotLeaderException extends CPSubsystemException
ACPSubsystemException
which is thrown when a leader-only request is received by a non-leader member.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotLeaderException(CPGroupId groupId, com.hazelcast.cp.internal.raft.impl.RaftEndpoint local, com.hazelcast.cp.internal.raft.impl.RaftEndpoint leader)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NotLeaderException
wrap()
Returns a new exception of the same type asthis
exception, usingthis
exception as its cause.-
Methods inherited from class com.hazelcast.cp.exception.CPSubsystemException
getLeaderUuid
-
-
-
-
Constructor Detail
-
NotLeaderException
public NotLeaderException(CPGroupId groupId, com.hazelcast.cp.internal.raft.impl.RaftEndpoint local, com.hazelcast.cp.internal.raft.impl.RaftEndpoint leader)
-
-
Method Detail
-
wrap
public NotLeaderException wrap()
Description copied from interface:com.hazelcast.spi.impl.operationservice.WrappableException
Returns a new exception of the same type asthis
exception, usingthis
exception as its cause. This is useful whenthis
is a remote or async exception, because its stack trace is disconnected from the client code that handles the exception. The returned exception includes all the state ofthis
exception, while providing the local stack trace and the remote/async stack trace in itscause
.- Specified by:
wrap
in interfacecom.hazelcast.spi.impl.operationservice.WrappableException<CPSubsystemException>
- Overrides:
wrap
in classCPSubsystemException
- Returns:
- a new
WrappableException
withthis
as itscause
.
-
-