VMware GemFire Java API Reference
Package org.apache.geode.cache.partition
Class PartitionNotAvailableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.cache.partition.PartitionNotAvailableException
-
- All Implemented Interfaces:
Serializable
public class PartitionNotAvailableException extends GemFireException
This exception is thrown when for the given fixed partition, datastore (local-max-memory > 0) is not available.- Since:
- GemFire 6.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PartitionNotAvailableException()Creates a newPartitionNotAvailableExceptionwith no detailed message.PartitionNotAvailableException(String message)Creates a newPartitionNotAvailableExceptionwith the given detail message.PartitionNotAvailableException(String message, Throwable cause)Creates a newPartitionNotAvailableExceptionwith the given detail message and cause.PartitionNotAvailableException(Throwable cause)Creates a newPartitionNotAvailableExceptionwith the given cause and no detail message
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PartitionNotAvailableException
public PartitionNotAvailableException()
Creates a newPartitionNotAvailableExceptionwith no detailed message.
-
PartitionNotAvailableException
public PartitionNotAvailableException(String message)
Creates a newPartitionNotAvailableExceptionwith the given detail message.- Parameters:
message- the detail message
-
PartitionNotAvailableException
public PartitionNotAvailableException(Throwable cause)
Creates a newPartitionNotAvailableExceptionwith the given cause and no detail message- Parameters:
cause- the cause
-
-