Package org.apache.geode.cache
Class DuplicatePrimaryPartitionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.cache.DuplicatePrimaryPartitionException
- All Implemented Interfaces:
Serializable
This exception is thrown when two nodes are defined with same primary partitions
- Since:
- GemFire 6.6
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newDuplicatePrimaryPartitionExceptionwith no detailed message.DuplicatePrimaryPartitionException(String message) Creates a newDuplicatePrimaryPartitionExceptionwith the given detail message.DuplicatePrimaryPartitionException(String message, Throwable cause) Creates a newDuplicatePrimaryPartitionExceptionwith the given detail message and cause.Creates a newDuplicatePrimaryPartitionExceptionwith the given cause and no detail message -
Method Summary
Methods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DuplicatePrimaryPartitionException
public DuplicatePrimaryPartitionException()Creates a newDuplicatePrimaryPartitionExceptionwith no detailed message. -
DuplicatePrimaryPartitionException
Creates a newDuplicatePrimaryPartitionExceptionwith the given detail message.- Parameters:
message- the detail message
-
DuplicatePrimaryPartitionException
Creates a newDuplicatePrimaryPartitionExceptionwith the given cause and no detail message- Parameters:
cause- the cause
-
DuplicatePrimaryPartitionException
Creates a newDuplicatePrimaryPartitionExceptionwith the given detail message and cause.- Parameters:
message- the detail messagecause- the cause
-