class GmoPayment::Errors::ResponseHTTPError

Error of response HTTP is not 2xx.

Attributes

called_method[RW]

@!attribute [rw] called_method @!attribute [rw] request

request[RW]

@!attribute [rw] called_method @!attribute [rw] request

Public Class Methods

new(called_method = nil, request = nil) click to toggle source

@param [Symbol] called_method @param [Request] request

Calls superclass method
# File lib/gmo_payment/errors.rb, line 62
def initialize(called_method = nil, request = nil)
  self.called_method = called_method
  self.request = request
  super("HTTP response called from `#{called_method}' is not 2xx")
end