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