This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

SystemCallError

        # SystemCallError < StandardError

(from ruby core)
---
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
---
# Class methods:

    ===
    new

# Instance methods:

    errno


      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.