Exception: Aws::Waiters::Errors::TooManyAttemptsError
- Inherits:
-
WaiterFailed
- Object
- StandardError
- WaiterFailed
- Aws::Waiters::Errors::TooManyAttemptsError
- Defined in:
- lib/aws-sdk-core/waiters/errors.rb
Constant Summary collapse
- MSG =
"stopped waiting after %d attempts without success"
Instance Attribute Summary collapse
- #attempts ⇒ Integer readonly
Instance Method Summary collapse
-
#initialize(attempts) ⇒ TooManyAttemptsError
constructor
A new instance of TooManyAttemptsError.
Constructor Details
#initialize(attempts) ⇒ TooManyAttemptsError
Returns a new instance of TooManyAttemptsError.
28 29 30 31 |
# File 'lib/aws-sdk-core/waiters/errors.rb', line 28 def initialize(attempts) @attempts = attempts super(MSG % [attempts]) end |
Instance Attribute Details
#attempts ⇒ Integer (readonly)
34 35 36 |
# File 'lib/aws-sdk-core/waiters/errors.rb', line 34 def attempts @attempts end |