You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

Exception: AWS::SQS::Errors::BatchSendMultiError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/aws/sqs/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*error_set) ⇒ BatchSendMultiError

Returns a new instance of BatchSendMultiError



113
114
115
116
117
118
# File 'lib/aws/sqs/errors.rb', line 113

def initialize *error_set
  @errors = []
  error_set.each do |error|
    @errors << error
  end
end

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors



120
121
122
# File 'lib/aws/sqs/errors.rb', line 120

def errors
  @errors
end