Type:
Class

SystemCallError is the base class for all low-level platform-dependent errors.

The errors available on the current platform are subclasses of SystemCallError and are defined in the Errno module.

File.open("does/not/exist")

raises the exception:

Errno::ENOENT: No such file or directory - does/not/exist
===

system_call_error === other â true or false Class Public methods Return true

2015-05-16 18:12:42
errno

system_call_error.errno â fixnum Instance Public methods Return this SystemCallError's

2015-05-16 18:24:07
new

SystemCallError.new(msg, errno) â system_call_error_subclass Class Public methods If

2015-05-16 18:17:36