class Payjp::CardError

Attributes

code[R]
param[R]

Public Class Methods

new(message, param, code, http_status = nil, http_body = nil, json_body = nil) click to toggle source
Calls superclass method
# File lib/payjp/errors/card_error.rb, line 5
def initialize(message, param, code, http_status = nil, http_body = nil, json_body = nil)
  super(message, http_status, http_body, json_body)
  @param = param
  @code = code
end