Exception: SMG::HTTP::ConnectionError
- Inherits:
-
StandardError
- Object
- StandardError
- SMG::HTTP::ConnectionError
- Defined in:
- lib/smg/http/exceptions.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response, message = nil) ⇒ ConnectionError
constructor
A new instance of ConnectionError.
- #to_s ⇒ Object
Constructor Details
#initialize(response, message = nil) ⇒ ConnectionError
Returns a new instance of ConnectionError.
8 9 10 11 |
# File 'lib/smg/http/exceptions.rb', line 8 def initialize(response, = nil) @response = response @message = end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
6 7 8 |
# File 'lib/smg/http/exceptions.rb', line 6 def response @response end |
Instance Method Details
#to_s ⇒ Object
13 14 15 16 17 |
# File 'lib/smg/http/exceptions.rb', line 13 def to_s = "Action failed with code: #{@response.code}." << " Message: #{@response.}" if @response.respond_to?(:message) end |