Exception: Helio::ParticipantError

Inherits:
HelioError
  • Object
show all
Defined in:
lib/helio/errors.rb

Overview

ParticipantError is raised when a user enters a card that can’t be charged for some reason.

Instance Attribute Summary collapse

Attributes inherited from HelioError

#http_body, #http_headers, #http_status, #json_body, #message, #request_id, #response

Instance Method Summary collapse

Methods inherited from HelioError

#to_s

Constructor Details

#initialize(message, param, code, http_status: nil, http_body: nil, json_body: nil, http_headers: nil) ⇒ ParticipantError

Returns a new instance of ParticipantError.



62
63
64
65
66
67
68
# File 'lib/helio/errors.rb', line 62

def initialize(message, param, code, http_status: nil, http_body: nil, json_body: nil,
               http_headers: nil)
  super(message, http_status: http_status, http_body: http_body,
                 json_body: json_body, http_headers: http_headers)
  @param = param
  @code = code
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



60
61
62
# File 'lib/helio/errors.rb', line 60

def code
  @code
end

#paramObject (readonly)

Returns the value of attribute param.



60
61
62
# File 'lib/helio/errors.rb', line 60

def param
  @param
end