Class IgniteIrreparableConsistencyViolationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.ignite.IgniteCheckedException
-
- org.apache.ignite.internal.processors.cache.distributed.near.consistency.IgniteIrreparableConsistencyViolationException
-
- All Implemented Interfaces:
Serializable
public class IgniteIrreparableConsistencyViolationException extends IgniteCheckedException
Irreparable consistency violation exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteIrreparableConsistencyViolationException(Collection<Object> repairableKeys, Collection<Object> irreparableKeys)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<Object>irreparableKeys()Inconsistent keys found but can not be repaired using the specified strategy.Collection<Object>repairableKeys()Inconsistent keys found but can be repaired using the specified strategy.-
Methods inherited from class org.apache.ignite.IgniteCheckedException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IgniteIrreparableConsistencyViolationException
public IgniteIrreparableConsistencyViolationException(Collection<Object> repairableKeys, Collection<Object> irreparableKeys)
- Parameters:
repairableKeys- Repairable keys.irreparableKeys- Irreparable keys.
-
-
Method Detail
-
irreparableKeys
public Collection<Object> irreparableKeys()
Inconsistent keys found but can not be repaired using the specified strategy.
-
repairableKeys
public Collection<Object> repairableKeys()
Inconsistent keys found but can be repaired using the specified strategy.
-
-