Class: Aws::Pricing::Errors::ThrottlingException

Inherits:
ServiceError
  • Object
show all
Defined in:
gems/aws-sdk-pricing/lib/aws-sdk-pricing/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException

Returns a new instance of ThrottlingException.

Parameters:



159
160
161
# File 'gems/aws-sdk-pricing/lib/aws-sdk-pricing/errors.rb', line 159

def initialize(context, message, data = Aws::EmptyStructure.new)
  super(context, message, data)
end

Instance Method Details

#messageString

Returns:

  • (String)


164
165
166
# File 'gems/aws-sdk-pricing/lib/aws-sdk-pricing/errors.rb', line 164

def message
  @message || @data[:message]
end

#retryable?Boolean

Returns:

  • (Boolean)


168
169
170
# File 'gems/aws-sdk-pricing/lib/aws-sdk-pricing/errors.rb', line 168

def retryable?
  true
end

#throttling?Boolean

Returns:

  • (Boolean)


172
173
174
# File 'gems/aws-sdk-pricing/lib/aws-sdk-pricing/errors.rb', line 172

def throttling?
  true
end