class Aws::Waiters::Errors::TooManyAttemptsError

Constants

MSG

Attributes

attempts[R]

@return [Integer]

Public Class Methods

new(attempts) click to toggle source
Calls superclass method
# File lib/aws-sdk-core/waiters/errors.rb, line 28
def initialize(attempts)
  @attempts = attempts
  super(MSG % [attempts])
end