Class UpgradeAlreadyInProgressException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.gridgain.internal.upgrade.exception.UpgradeException
org.gridgain.internal.upgrade.exception.UpgradeAlreadyInProgressException
- All Implemented Interfaces:
Serializable,org.apache.ignite.lang.TraceableException
Thrown when attempting to start a rolling upgrade while another upgrade
is already in progress.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUpgradeAlreadyInProgressException(String nextVersion) Constructor.UpgradeAlreadyInProgressException(String nextVersion, Throwable cause) Constructor that preserves the underlying cause (e.g. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceIdMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
UpgradeAlreadyInProgressException
Constructor.- Parameters:
nextVersion- The version that the cluster is currently upgrading to.
-
UpgradeAlreadyInProgressException
Constructor that preserves the underlying cause (e.g. theRollingUpgradeDeniedExceptionsurfaced by the CMG Raft state machine).- Parameters:
nextVersion- The version that the cluster is currently upgrading to.cause- Underlying cause.
-