Exception: Aws::Errors::RetryCapacityNotAvailableError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Aws::Errors::RetryCapacityNotAvailableError
- 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
-
#initialize(*args) ⇒ RetryCapacityNotAvailableError
constructor
A new instance of RetryCapacityNotAvailableError.
Constructor Details
#initialize(*args) ⇒ RetryCapacityNotAvailableError
Returns a new instance of RetryCapacityNotAvailableError.
328 329 330 331 |
# File 'lib/aws-sdk-core/errors.rb', line 328 def initialize(*args) msg = 'Insufficient client side capacity available to retry request.' super(msg) end |