class Net::WriteTimeout
WriteTimeout
, a subclass of Timeout::Error
, is raised if a chunk of the response cannot be written within the write_timeout. Not raised on Windows.
Attributes
io[R]
Public Class Methods
# File lib/net/protocol.rb, line 100 def initialize(io = nil) @io = io end
Public Instance Methods
# File lib/net/protocol.rb, line 105 def message msg = super if @io msg = "#{msg} with #{@io.inspect}" end msg end
Calls superclass method
Exception#message
Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.