Class
ReadTimeout
, a subclass of Timeout::Error
, is raised if a chunk of the response cannot be read within the read_timeout.
Attributes
Read
No documentation available
Class Methods
lib/net/protocol.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/net/protocol.rb, line 79
def initialize(io = nil)
@io = io
end
No documentation available
Instance Methods
#
lib/net/protocol.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/net/protocol.rb, line 84
def message
msg = super
if @io
msg = "#{msg} with #{@io.inspect}"
end
msg
end
No documentation available