類別 Net::ReadTimeout
ReadTimeout
是 Timeout::Error
的子類別,如果在 read_timeout 內無法讀取回應區塊,就會引發這個類別。
屬性
io[R]
公開類別方法
new(io = nil) 按一下以切換來源
# File lib/net/protocol.rb, line 81 def initialize(io = nil) @io = io end
公開實例方法
message() 按一下以切換來源
呼叫超類別方法
Exception#message
# File lib/net/protocol.rb, line 86 def message msg = super if @io msg = "#{msg} with #{@io.inspect}" end msg end