Exception: PushPay::NotFoundError

Inherits:
APIError show all
Defined in:
lib/pushpay/errors.rb

Instance Attribute Summary

Attributes inherited from APIError

#response_body, #status_code

Instance Method Summary collapse

Constructor Details

#initialize(message = "Resource not found", status_code = 404, response_body = nil) ⇒ NotFoundError

Returns a new instance of NotFoundError.



38
39
40
# File 'lib/pushpay/errors.rb', line 38

def initialize(message = "Resource not found", status_code = 404, response_body = nil)
  super(message, status_code, response_body)
end