class Aws::Errors::RetryCapacityNotAvailableError

Raised when attempting to retry a request and no capacity is available to retry (See adaptive retry_mode)

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/aws-sdk-core/errors.rb, line 328
def initialize(*args)
  msg = 'Insufficient client side capacity available to retry request.'
  super(msg)
end