Exception: Aws::AwsError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Aws::AwsError
- Defined in:
- lib/awsbase/errors.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_data ⇒ Object
readonly
Raw request text data to AWS.
-
#request_id ⇒ Object
readonly
Request id (if exists).
-
#response ⇒ Object
readonly
Returns the value of attribute response.
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_or_string) ⇒ 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, request_data = nil, response = nil) ⇒ AwsError
constructor
A new instance of AwsError.
Constructor Details
#initialize(errors = nil, http_code = nil, request_id = nil, request_data = nil, response = nil) ⇒ AwsError
Returns a new instance of AwsError.
28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/awsbase/errors.rb', line 28 def initialize(errors=nil, http_code=nil, request_id=nil, request_data=nil, response=nil) @errors = errors @request_id = request_id @http_code = http_code @request_data = request_data @response = response msg = @errors.is_a?(Array) ? @errors.map { |code, m| "#{code}: #{m}" }.join("; ") : @errors.to_s msg += "\nREQUEST=#{@request_data} " unless @request_data.nil? msg += "\nREQUEST ID=#{@request_id} " unless @request_id.nil? super(msg) 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')
15 16 17 |
# File 'lib/awsbase/errors.rb', line 15 def errors @errors end |
#http_code ⇒ Object (readonly)
Response HTTP error code
21 22 23 |
# File 'lib/awsbase/errors.rb', line 21 def http_code @http_code end |
#request_data ⇒ Object (readonly)
Raw request text data to AWS
24 25 26 |
# File 'lib/awsbase/errors.rb', line 24 def request_data @request_data end |
#request_id ⇒ Object (readonly)
Request id (if exists)
18 19 20 |
# File 'lib/awsbase/errors.rb', line 18 def request_id @request_id end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
26 27 28 |
# File 'lib/awsbase/errors.rb', line 26 def response @response end |
Class Method Details
.on_aws_exception(aws, options = {:raise=>true, :log=>true}) ⇒ Object
Generic handler for AwsErrors. aws
is the Aws::S3, Aws::EC2, or Aws::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
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/awsbase/errors.rb', line 61 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-' @response = response 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.
82 83 84 |
# File 'lib/awsbase/errors.rb', line 82 def self.system_error?(e) !e.is_a?(self) || e. =~ /InternalError|InsufficientInstanceCapacity|Unavailable/ end |
Instance Method Details
#include?(pattern_or_string) ⇒ Boolean
Does any of the error messages include the regexp pattern
? Used to determine whether to retry request.
42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/awsbase/errors.rb', line 42 def include?(pattern_or_string) if pattern_or_string.is_a?(String) puts 'convert to pattern' pattern_or_string = /#{pattern_or_string}/ end if @errors.is_a?(Array) @errors.each { |code, msg| return true if code =~ pattern_or_string } else return true if @errors_str =~ pattern_or_string end false end |