Gemfire JavaDocs
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:
java.io.Serializable
public class DuplicatePrimaryPartitionException extends GemFireException
This exception is thrown when two nodes are defined with same primary partitions- Since:
- GemFire 6.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicatePrimaryPartitionException()
Creates a newDuplicatePrimaryPartitionException
with no detailed message.DuplicatePrimaryPartitionException(java.lang.String message)
Creates a newDuplicatePrimaryPartitionException
with the given detail message.DuplicatePrimaryPartitionException(java.lang.String message, java.lang.Throwable cause)
Creates a newDuplicatePrimaryPartitionException
with the given detail message and cause.DuplicatePrimaryPartitionException(java.lang.Throwable cause)
Creates a newDuplicatePrimaryPartitionException
with the given cause and no detail message
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
DuplicatePrimaryPartitionException
public DuplicatePrimaryPartitionException()
Creates a newDuplicatePrimaryPartitionException
with no detailed message.
-
DuplicatePrimaryPartitionException
public DuplicatePrimaryPartitionException(java.lang.String message)
Creates a newDuplicatePrimaryPartitionException
with the given detail message.- Parameters:
message
- the detail message
-
DuplicatePrimaryPartitionException
public DuplicatePrimaryPartitionException(java.lang.Throwable cause)
Creates a newDuplicatePrimaryPartitionException
with the given cause and no detail message- Parameters:
cause
- the cause
-
DuplicatePrimaryPartitionException
public DuplicatePrimaryPartitionException(java.lang.String message, java.lang.Throwable cause)
Creates a newDuplicatePrimaryPartitionException
with the given detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
-