stripe-ruby/lib/stripe/errors/stripe_error.rb
Kyle Conroy 053c44f35c Add request IDs and HTTP headers to errors
The request ID, if it exists, is now added to the output for the error
2015-07-02 13:54:02 -07:00

27 lines
770 B
Ruby

module Stripe
class StripeError < StandardError
attr_reader :message
attr_reader :http_status
attr_reader :http_body
attr_reader :http_headers
attr_reader :request_id
attr_reader :json_body
def initialize(message=nil, http_status=nil, http_body=nil, json_body=nil,
http_headers=nil)
@message = message
@http_status = http_status
@http_body = http_body
@http_headers = http_headers || {}
@json_body = json_body
@request_id = @http_headers[:request_id]
end
def to_s
status_string = @http_status.nil? ? "" : "(Status #{@http_status}) "
id_string = @request_id.nil? ? "" : "(Request #{@request_id}) "
"#{status_string}#{id_string}#{@message}"
end
end
end