Exception: Yoti::RequestError
- Inherits:
-
StandardError
- Object
- StandardError
- Yoti::RequestError
- Defined in:
- lib/yoti/errors.rb
Overview
Raises exceptions related to API requests
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(message, response = nil) ⇒ RequestError
constructor
A new instance of RequestError.
Constructor Details
#initialize(message, response = nil) ⇒ RequestError
Returns a new instance of RequestError.
9 10 11 12 |
# File 'lib/yoti/errors.rb', line 9 def initialize(, response = nil) super((, response)) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
7 8 9 |
# File 'lib/yoti/errors.rb', line 7 def response @response end |