Exception: Aws::Errors::RetryCapacityNotAvailableError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/aws-sdk-core/errors.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ RetryCapacityNotAvailableError

Returns a new instance of RetryCapacityNotAvailableError.



319
320
321
322
# File 'lib/aws-sdk-core/errors.rb', line 319

def initialize(*args)
  msg = 'Insufficient client side capacity available to retry request.'
  super(msg)
end