Exception: RightAws::AwsError
- Defined in:
- lib/awsbase/right_awsbase.rb
Overview
Exception class to signal any Amazon errors. All errors occuring during calls to Amazon’s web services raise this type of error. Attribute inherited by RuntimeError:
message - the text of the error, generally as returned by AWS in its XML response.
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
either an array of errors where each item is itself an array of [code, message]), or an error string if the error was raised manually, as in
AwsError.new('err_text')
. -
#http_code ⇒ Object
readonly
Response HTTP error code.
-
#request_id ⇒ Object
readonly
Request id (if exists).
Class Method Summary collapse
-
.on_aws_exception(aws, options = {:raise=>true, :log=>true}) ⇒ Object
Generic handler for AwsErrors.
-
.system_error?(e) ⇒ Boolean
True if e is an AWS system error, i.e.
Instance Method Summary collapse
-
#include?(pattern) ⇒ Boolean
Does any of the error messages include the regexp
pattern
? Used to determine whether to retry request. -
#initialize(errors = nil, http_code = nil, request_id = nil) ⇒ AwsError
constructor
A new instance of AwsError.
Constructor Details
#initialize(errors = nil, http_code = nil, request_id = nil) ⇒ AwsError
Returns a new instance of AwsError.
567 568 569 570 571 572 |
# File 'lib/awsbase/right_awsbase.rb', line 567 def initialize(errors=nil, http_code=nil, request_id=nil) @errors = errors @request_id = request_id @http_code = http_code super(@errors.is_a?(Array) ? @errors.map{|code, msg| "#{code}: #{msg}"}.join("; ") : @errors.to_s) end |
Instance Attribute Details
#errors ⇒ Object (readonly)
either an array of errors where each item is itself an array of [code, message]), or an error string if the error was raised manually, as in AwsError.new('err_text')
559 560 561 |
# File 'lib/awsbase/right_awsbase.rb', line 559 def errors @errors end |
#http_code ⇒ Object (readonly)
Response HTTP error code
565 566 567 |
# File 'lib/awsbase/right_awsbase.rb', line 565 def http_code @http_code end |
#request_id ⇒ Object (readonly)
Request id (if exists)
562 563 564 |
# File 'lib/awsbase/right_awsbase.rb', line 562 def request_id @request_id end |
Class Method Details
.on_aws_exception(aws, options = {:raise=>true, :log=>true}) ⇒ Object
Generic handler for AwsErrors. aws
is the RightAws::S3, RightAws::EC2, or RightAws::SQS object that caused the exception (it must provide last_request and last_response). Supported boolean options are:
-
:log
print a message into the log using aws.logger to access the Logger -
:puts
do a “puts” of the error -
:raise
re-raise the error after logging
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 |
# File 'lib/awsbase/right_awsbase.rb', line 591 def self.on_aws_exception(aws, ={:raise=>true, :log=>true}) # Only log & notify if not user error if ![:raise] || system_error?($!) error_text = "#{$!.inspect}\n#{$@}.join('\n')}" puts error_text if [:puts] # Log the error if [:log] request = aws.last_request ? aws.last_request.path : '-none-' response = aws.last_response ? "#{aws.last_response.code} -- #{aws.last_response.} -- #{aws.last_response.body}" : '-none-' aws.logger.error error_text aws.logger.error "Request was: #{request}" aws.logger.error "Response was: #{response}" end end raise if [:raise] # re-raise an exception return nil end |
.system_error?(e) ⇒ Boolean
True if e is an AWS system error, i.e. something that is for sure not the caller’s fault. Used to force logging.
611 612 613 |
# File 'lib/awsbase/right_awsbase.rb', line 611 def self.system_error?(e) !e.is_a?(self) || e. =~ /InternalError|InsufficientInstanceCapacity|Unavailable/ end |
Instance Method Details
#include?(pattern) ⇒ Boolean
Does any of the error messages include the regexp pattern
? Used to determine whether to retry request.
576 577 578 579 580 581 582 583 |
# File 'lib/awsbase/right_awsbase.rb', line 576 def include?(pattern) if @errors.is_a?(Array) @errors.each{ |code, msg| return true if code =~ pattern } else return true if @errors_str =~ pattern end false end |