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>,- Serializable
A 
CPSubsystemException which is thrown when
 a leader-only request is received by a non-leader member.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionNotLeaderException(CPGroupId groupId, com.hazelcast.cp.internal.raft.impl.RaftEndpoint local, com.hazelcast.cp.internal.raft.impl.RaftEndpoint leader) NotLeaderException(String message, Throwable cause) 
- 
Method SummaryModifier and TypeMethodDescriptionwrap()Returns a new exception of the same type asthisexception, usingthisexception as its cause.Methods inherited from class com.hazelcast.cp.exception.CPSubsystemExceptiongetLeaderUuidMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NotLeaderExceptionpublic NotLeaderException(CPGroupId groupId, com.hazelcast.cp.internal.raft.impl.RaftEndpoint local, com.hazelcast.cp.internal.raft.impl.RaftEndpoint leader) 
- 
NotLeaderException
 
- 
- 
Method Details- 
wrapDescription copied from interface:com.hazelcast.spi.impl.operationservice.WrappableExceptionReturns a new exception of the same type asthisexception, usingthisexception as its cause. This is useful whenthisis 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 ofthisexception, while providing the local stack trace and the remote/async stack trace in itscause.- Specified by:
- wrapin interface- com.hazelcast.spi.impl.operationservice.WrappableException<CPSubsystemException>
- Overrides:
- wrapin class- CPSubsystemException
- Returns:
- a new WrappableExceptionwiththisas itscause.
 
 
-