mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-06 00:02:18 -04:00
27 lines
770 B
Ruby
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
|