Exception¶
- 
retryable(cls)¶ Makes the given error retryable.
Parameters: cls – ( HazelcastError), the given error.Returns: ( HazelcastError), the given error with retryable property.
- 
exception 
HazelcastError¶ Bases:
exceptions.ExceptionGeneral HazelcastError class.
- 
exception 
ArrayIndexOutOfBoundsError¶ 
- 
exception 
ArrayStoreError¶ 
- 
exception 
AuthenticationError¶ 
- 
exception 
CacheNotExistsError¶ 
- 
exception 
CallerNotMemberError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
CancellationError¶ 
- 
exception 
ClassCastError¶ 
- 
exception 
ClassNotFoundError¶ 
- 
exception 
ConcurrentModificationError¶ 
- 
exception 
ConfigMismatchError¶ 
- 
exception 
ConfigurationError¶ 
- 
exception 
DistributedObjectDestroyedError¶ 
- 
exception 
DuplicateInstanceNameError¶ 
- 
exception 
HazelcastEOFError¶ 
- 
exception 
ExecutionError¶ 
- 
exception 
HazelcastInstanceNotActiveError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
HazelcastOverloadError¶ 
- 
exception 
HazelcastSerializationError¶ 
- 
exception 
HazelcastIOError¶ 
- 
exception 
IllegalArgumentError¶ 
- 
exception 
IllegalAccessException¶ 
- 
exception 
IllegalAccessError¶ 
- 
exception 
IllegalMonitorStateError¶ 
- 
exception 
HazelcastIllegalStateError¶ 
- 
exception 
IllegalThreadStateError¶ 
- 
exception 
IndexOutOfBoundsError¶ 
- 
exception 
HazelcastInterruptedError¶ 
- 
exception 
InvalidAddressError¶ 
- 
exception 
InvalidConfigurationError¶ 
- 
exception 
MemberLeftError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
NegativeArraySizeError¶ 
- 
exception 
NoSuchElementError¶ 
- 
exception 
NotSerializableError¶ 
- 
exception 
NullPointerError¶ 
- 
exception 
OperationTimeoutError¶ 
- 
exception 
PartitionMigratingError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
QueryError¶ 
- 
exception 
QueryResultSizeExceededError¶ 
- 
exception 
QuorumError¶ 
- 
exception 
ReachedMaxSizeError¶ 
- 
exception 
RejectedExecutionError¶ 
- 
exception 
RemoteMapReduceError¶ 
- 
exception 
ResponseAlreadySentError¶ 
- 
exception 
RetryableHazelcastError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
RetryableIOError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
HazelcastRuntimeError¶ 
- 
exception 
SecurityError¶ 
- 
exception 
SocketError¶ 
- 
exception 
StaleSequenceError¶ 
- 
exception 
TargetDisconnectedError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
TargetNotMemberError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
TimeoutError¶ 
- 
exception 
TopicOverloadError¶ 
- 
exception 
TopologyChangedError¶ 
- 
exception 
TransactionError¶ 
- 
exception 
TransactionNotActiveError¶ 
- 
exception 
TransactionTimedOutError¶ 
- 
exception 
URISyntaxError¶ 
- 
exception 
UTFDataFormatError¶ 
- 
exception 
UnsupportedOperationError¶ 
- 
exception 
WrongTargetError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
XAError¶ 
- 
exception 
AccessControlError¶ 
- 
exception 
LoginError¶ 
- 
exception 
UnsupportedCallbackError¶ 
- 
exception 
NoDataMemberInClusterError¶ 
- 
exception 
ReplicatedMapCantBeCreatedOnLiteMemberError¶ 
- 
exception 
MaxMessageSizeExceededError¶ 
- 
exception 
WANReplicationQueueFullError¶ 
- 
exception 
HazelcastAssertionError¶ 
- 
exception 
OutOfMemoryError¶ 
- 
exception 
StackOverflowError¶ 
- 
exception 
NativeOutOfMemoryError¶ 
- 
exception 
ServiceNotFoundError¶ 
- 
exception 
StaleTaskIdError¶ 
- 
exception 
DuplicateTaskError¶ 
- 
exception 
StaleTaskError¶ 
- 
exception 
LocalMemberResetError¶ 
- 
exception 
IndeterminateOperationStateError¶ 
- 
exception 
NodeIdOutOfRangeError¶ 
- 
exception 
TargetNotReplicaError¶ Bases:
hazelcast.exception.HazelcastError- 
retryable= True¶ 
- 
 
- 
exception 
MutationDisallowedError¶ 
- 
exception 
ConsistencyLostError¶ 
- 
exception 
HazelcastClientNotActiveException¶ Bases:
exceptions.ValueError
- 
exception 
HazelcastCertificationError¶ 
- 
create_exception(error_codec)¶ Creates an exception with given error codec.
Parameters: error_codec – (Error Codec), error codec which includes the class name, message and exception trace. Returns: (Exception), the created exception. 
- 
is_retryable_error(error)¶ Determines whether the given error is retryable or not. :param error: (
HazelcastError), the given error. :return: (bool),trueif the given error is retryable,falseotherwise.