Exception: PostNordAPI::Error
- Inherits:
-
StandardError
- Object
- StandardError
- PostNordAPI::Error
- Defined in:
- lib/post_nord_api/errors.rb
Direct Known Subclasses
BadRequestError, ForbiddenError, RateLimitError, ServerError
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(message, response) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message, response) ⇒ Error
Returns a new instance of Error.
6 7 8 9 |
# File 'lib/post_nord_api/errors.rb', line 6 def initialize(, response) super() @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/post_nord_api/errors.rb', line 5 def response @response end |