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
- StandardError
- AWS::SQS::Errors::BatchSendMultiError
- Defined in:
- lib/aws/sqs/errors.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
Instance Method Summary collapse
-
#initialize(*error_set) ⇒ BatchSendMultiError
constructor
A new instance of BatchSendMultiError.
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
#errors ⇒ Object (readonly)
Returns the value of attribute errors
120 121 122 |
# File 'lib/aws/sqs/errors.rb', line 120 def errors @errors end |