Exception: Payjp::CardError

Inherits:
PayjpError
  • Object
show all
Defined in:
lib/payjp/errors/card_error.rb

Instance Attribute Summary collapse

Attributes inherited from PayjpError

#http_body, #http_status, #json_body, #message

Instance Method Summary collapse

Methods inherited from PayjpError

#to_s

Constructor Details

#initialize(message, param, code, http_status = nil, http_body = nil, json_body = nil) ⇒ CardError

Returns a new instance of CardError.



5
6
7
8
9
# 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

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



3
4
5
# File 'lib/payjp/errors/card_error.rb', line 3

def code
  @code
end

#paramObject (readonly)

Returns the value of attribute param.



3
4
5
# File 'lib/payjp/errors/card_error.rb', line 3

def param
  @param
end