Exception: HTTPClient::KeepAliveDisconnected
- Inherits:
-
StandardError
- Object
- StandardError
- HTTPClient::KeepAliveDisconnected
- Defined in:
- lib/httpclient.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#cause ⇒ Object
readonly
Returns the value of attribute cause.
-
#sess ⇒ Object
readonly
Returns the value of attribute sess.
Instance Method Summary collapse
-
#initialize(sess = nil, cause = nil) ⇒ KeepAliveDisconnected
constructor
A new instance of KeepAliveDisconnected.
Constructor Details
#initialize(sess = nil, cause = nil) ⇒ KeepAliveDisconnected
Returns a new instance of KeepAliveDisconnected.
908 909 910 911 912 |
# File 'lib/httpclient.rb', line 908 def initialize(sess = nil, cause = nil) super("#{self.class.name}: #{cause ? cause. : nil}") @sess = sess @cause = cause end |
Instance Attribute Details
#cause ⇒ Object (readonly)
Returns the value of attribute cause.
907 908 909 |
# File 'lib/httpclient.rb', line 907 def cause @cause end |
#sess ⇒ Object (readonly)
Returns the value of attribute sess.
906 907 908 |
# File 'lib/httpclient.rb', line 906 def sess @sess end |