Class StoreReconnectTimeoutException

All Implemented Interfaces:
Serializable

public class StoreReconnectTimeoutException extends StoreRuntimeException
Thrown whenever a client reconnection with a server times-out where the underlying cause is transient in nature. Clients are free to retry the same operation again with the expectation of achieving a successful server connection once the underlying, transient issue is no longer present.

Time-outs caused by issues that are deemed to be permanent in nature will be thrown as a StoreReconnectFailedException.

The value of Throwable.getCause() is the exception causing the timeout exception. The exception by which the connection failure was originally observed is added as a suppressed exception.

See Also:
  • Constructor Details

    • StoreReconnectTimeoutException

      public StoreReconnectTimeoutException(Throwable cause)
    • StoreReconnectTimeoutException

      public StoreReconnectTimeoutException(String message, Throwable cause)