Exception: Aws::Waiters::Errors::TooManyAttemptsError

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

Constant Summary collapse

MSG =
"stopped waiting after %d attempts without success"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attempts) ⇒ TooManyAttemptsError

Returns a new instance of TooManyAttemptsError.



30
31
32
33
# File 'gems/aws-sdk-core/lib/aws-sdk-core/waiters/errors.rb', line 30

def initialize(attempts)
  @attempts = attempts
  super(MSG % [attempts])
end

Instance Attribute Details

#attemptsInteger (readonly)

Returns:

  • (Integer)


36
37
38
# File 'gems/aws-sdk-core/lib/aws-sdk-core/waiters/errors.rb', line 36

def attempts
  @attempts
end