Exception: RestClient::ServerBrokeConnection
- Defined in:
- lib/restclient/exceptions.rb
Overview
The server broke the connection prior to the request completing. Usually this means it crashed, or sometimes that your network connection was severed before it could complete.
Instance Attribute Summary
Attributes inherited from Exception
Instance Method Summary collapse
-
#initialize(message = 'Server broke connection') ⇒ ServerBrokeConnection
constructor
A new instance of ServerBrokeConnection.
Methods inherited from Exception
#http_body, #http_code, #inspect, #to_s
Constructor Details
#initialize(message = 'Server broke connection') ⇒ ServerBrokeConnection
Returns a new instance of ServerBrokeConnection.
170 171 172 173 |
# File 'lib/restclient/exceptions.rb', line 170 def initialize( = 'Server broke connection') super nil, nil self. = end |