Class RetryExhaustedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.couchbase.client.core.retry.reactor.RetryExhaustedException
All Implemented Interfaces:
Serializable

@Deprecated public class RetryExhaustedException extends RuntimeException
Deprecated.
Use equivalent features of reactor-core like Exceptions.retryExhausted(String, Throwable) and Exceptions.isRetryExhausted(Throwable) instead.
Exception indicating that retries have been exhausted after Retry.timeout(java.time.Duration) or Retry.retryMax(long). For retries, Throwable.getCause() returns the original exception from the last retry attempt that generated this exception.
See Also:
  • Constructor Details

    • RetryExhaustedException

      public RetryExhaustedException(String message)
      Deprecated.
    • RetryExhaustedException

      public RetryExhaustedException(Throwable cause)
      Deprecated.