Class: Net::ReadTimeout

Inherits:
Timeout::Error
  • Object
show all
Defined in:
lib/net/protocol.rb

Overview

ReadTimeout, a subclass of Timeout::Error, is raised if a chunk of the response cannot be read within the read_timeout.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io = nil) ⇒ ReadTimeout

Returns a new instance of ReadTimeout.



81
82
83
# File 'lib/net/protocol.rb', line 81

def initialize(io = nil)
  @io = io
end

Instance Attribute Details

#ioObject (readonly)

Returns the value of attribute io.



84
85
86
# File 'lib/net/protocol.rb', line 84

def io
  @io
end

Instance Method Details

#messageObject



86
87
88
89
90
91
92
# File 'lib/net/protocol.rb', line 86

def message
  msg = super
  if @io
    msg = "#{msg} with #{@io.inspect}"
  end
  msg
end