Class StoreReconnectInterruptedException

All Implemented Interfaces:
Serializable

public class StoreReconnectInterruptedException extends StoreReconnectFailedException
Thrown to indicate an operation is abandoned due to a connection failure and the thread is interrupted before a reconnect is complete. The completion status of the abandoned operation is unknown. The thread interruption is left pending; the interruption must be cleared if store operations are retried in the interrupted thread.

The value of Throwable.getCause() is the InterruptedException raised to interrupt the thread. The exception by which the connection failure was originally observed is added as a suppressed exception.

See Also:
  • Constructor Details

    • StoreReconnectInterruptedException

      public StoreReconnectInterruptedException(String message)
    • StoreReconnectInterruptedException

      public StoreReconnectInterruptedException(Throwable cause)
    • StoreReconnectInterruptedException

      public StoreReconnectInterruptedException(String message, Throwable cause)