public class CPSubsystemException extends HazelcastException implements com.hazelcast.spi.impl.operationservice.WrappableException<CPSubsystemException>
This exception can include the known leader of a CPGroup
when it's thrown.
Leader endpoint can be accessed by getLeaderUuid()
, if available.
Constructor and Description |
---|
CPSubsystemException(String message,
Throwable cause,
UUID leaderUuid) |
CPSubsystemException(String message,
UUID leaderUuid) |
CPSubsystemException(UUID leaderUuid) |
Modifier and Type | Method and Description |
---|---|
UUID |
getLeaderUuid()
Returns the leader endpoint of related CP group, if known/available
by the time this exception is thrown.
|
CPSubsystemException |
wrap()
Returns a new exception of the same type as
this exception, using
this exception as its cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public CPSubsystemException(UUID leaderUuid)
public UUID getLeaderUuid()
public CPSubsystemException wrap()
com.hazelcast.spi.impl.operationservice.WrappableException
this
exception, using
this
exception as its cause. This is useful when this
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 of this
exception, while providing the local stack trace
and the remote/async stack trace in its cause
.wrap
in interface com.hazelcast.spi.impl.operationservice.WrappableException<CPSubsystemException>
WrappableException
with this
as its cause
.Copyright © 2023 Hazelcast, Inc.. All rights reserved.