Exception: Footrest::HttpError::ErrorBase
- Inherits:
-
StandardError
- Object
- StandardError
- Footrest::HttpError::ErrorBase
- Defined in:
- lib/footrest/http_error.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#method ⇒ Object
readonly
Returns the value of attribute method.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(response = nil) ⇒ ErrorBase
constructor
A new instance of ErrorBase.
Constructor Details
#initialize(response = nil) ⇒ ErrorBase
7 8 9 10 11 12 13 14 |
# File 'lib/footrest/http_error.rb', line 7 def initialize(response=nil) @response = response @status = @response[:status] @body = @response[:body] @method = @response[:method] super("HTTP ERROR: #{@status}") end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
5 6 7 |
# File 'lib/footrest/http_error.rb', line 5 def body @body end |
#method ⇒ Object (readonly)
Returns the value of attribute method.
5 6 7 |
# File 'lib/footrest/http_error.rb', line 5 def method @method end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/footrest/http_error.rb', line 5 def response @response end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
5 6 7 |
# File 'lib/footrest/http_error.rb', line 5 def status @status end |