mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-07 00:05:33 -04:00
12 lines
310 B
Ruby
12 lines
310 B
Ruby
module Stripe
|
|
class InvalidRequestError < StripeError
|
|
attr_accessor :param
|
|
|
|
def initialize(message, param, http_status=nil, http_body=nil, json_body=nil,
|
|
http_headers=nil)
|
|
super(message, http_status, http_body, json_body, http_headers)
|
|
@param = param
|
|
end
|
|
end
|
|
end
|