Exception: PaymentsApi::RequestErrorException

Inherits:
APIException
  • Object
show all
Defined in:
lib/payments_api/exceptions/request_error_exception.rb

Overview

Format for 400 Errors

Instance Attribute Summary collapse

Attributes inherited from APIException

#response, #response_code

Instance Method Summary collapse

Constructor Details

#initialize(reason, response) ⇒ RequestErrorException

The constructor.

Parameters:

  • The (String)

    reason for raising an exception.

  • The (HttpResponse)

    HttpReponse of the API call.

[View source]

16
17
18
19
20
# File 'lib/payments_api/exceptions/request_error_exception.rb', line 16

def initialize(reason, response)
  super(reason, response)
  hash = APIHelper.json_deserialize(@response.raw_body)
  unbox(hash)
end

Instance Attribute Details

#messageString

Message indicating the source of the error in the request

Returns:

  • (String)

11
12
13
# File 'lib/payments_api/exceptions/request_error_exception.rb', line 11

def message
  @message
end

Instance Method Details

#unbox(hash) ⇒ Object

Populates this object by extracting properties from a hash. response body.

Parameters:

  • The (Hash)

    deserialized response sent by the server in the

[View source]

25
26
27
# File 'lib/payments_api/exceptions/request_error_exception.rb', line 25

def unbox(hash)
  @message = hash['message']
end