Class RetryableHazelcastException

All Implemented Interfaces:
RetryableException, Serializable
Direct Known Subclasses:
CallerNotMemberException, PartitionMigratingException, TargetNotMemberException, TargetNotReplicaException, WrongTargetException

public class RetryableHazelcastException extends HazelcastException implements RetryableException
A 'marker' exception that indicates that an operation can be retried. E.g. if map.get is sent to a partition that is currently migrating, a subclass of this exception is thrown, so the caller can deal with it (e.g. sending the request to the new partition owner).
See Also:
  • Constructor Details

    • RetryableHazelcastException

      public RetryableHazelcastException()
    • RetryableHazelcastException

      public RetryableHazelcastException(String message)
    • RetryableHazelcastException

      public RetryableHazelcastException(String message, Throwable cause)
    • RetryableHazelcastException

      public RetryableHazelcastException(Throwable cause)