IOError 类
当 IO
操作失败时引发。
File.open("/etc/hosts") {|f| f << "example"} #=> IOError: not opened for writing File.open("/etc/hosts") {|f| f.close; f.read } #=> IOError: closed stream
注意,一些 IO
失败会引发 SystemCallError
,这些错误不是 IOError 的子类。
File.open("does/not/exist") #=> Errno::ENOENT: No such file or directory - does/not/exist