Exception: Noticed::ResponseUnsuccessful
- Inherits:
-
StandardError
- Object
- StandardError
- Noticed::ResponseUnsuccessful
- Defined in:
- lib/noticed.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response, url, args) ⇒ ResponseUnsuccessful
constructor
A new instance of ResponseUnsuccessful.
Constructor Details
#initialize(response, url, args) ⇒ ResponseUnsuccessful
36 37 38 39 40 41 42 |
# File 'lib/noticed.rb', line 36 def initialize(response, url, args) @response = response @url = url @args = args super("POST request to #{url} returned #{response.code} response:\n#{response.body.inspect}") end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
34 35 36 |
# File 'lib/noticed.rb', line 34 def response @response end |