core/errno.rbs in rbs-3.2.0.pre.1 vs core/errno.rbs in rbs-3.2.0
- old
+ new
@@ -20,753 +20,637 @@
# available as the constants of Errno.
#
# Errno.constants #=> :E2BIG, :EACCES, :EADDRINUSE, :EADDRNOTAVAIL, ...
#
module Errno
-end
+ class NOERROR < SystemCallError
+ Errno: 0
+ end
-class Errno::E2BIG < SystemCallError
-end
+ class E2BIG < SystemCallError
+ Errno: Integer
+ end
-Errno::E2BIG::Errno: Integer
+ class EACCES < SystemCallError
+ Errno: Integer
+ end
-class Errno::EACCES < SystemCallError
-end
+ class EADDRINUSE < SystemCallError
+ Errno: Integer
+ end
-Errno::EACCES::Errno: Integer
+ class EADDRNOTAVAIL < SystemCallError
+ Errno: Integer
+ end
-class Errno::EADDRINUSE < SystemCallError
-end
+ class EADV < SystemCallError
+ Errno: Integer
+ end
-Errno::EADDRINUSE::Errno: Integer
+ class EAFNOSUPPORT < SystemCallError
+ Errno: Integer
+ end
-class Errno::EADDRNOTAVAIL < SystemCallError
-end
+ class EAGAIN < SystemCallError
+ Errno: Integer
+ end
-Errno::EADDRNOTAVAIL::Errno: Integer
+ class EALREADY < SystemCallError
+ Errno: Integer
+ end
-class Errno::EADV < SystemCallError
-end
+ class EAUTH < SystemCallError
+ Errno: Integer
+ end
-Errno::EADV::Errno: Integer
+ class EBADARCH < SystemCallError
+ Errno: Integer
+ end
-class Errno::EAFNOSUPPORT < SystemCallError
-end
+ class EBADE < SystemCallError
+ Errno: Integer
+ end
-Errno::EAFNOSUPPORT::Errno: Integer
+ class EBADEXEC < SystemCallError
+ Errno: Integer
+ end
-class Errno::EAGAIN < SystemCallError
-end
+ class EBADF < SystemCallError
+ Errno: Integer
+ end
-Errno::EAGAIN::Errno: Integer
+ class EBADFD < SystemCallError
+ Errno: Integer
+ end
-class Errno::EALREADY < SystemCallError
-end
+ class EBADMACHO < SystemCallError
+ Errno: Integer
+ end
-Errno::EALREADY::Errno: Integer
+ class EBADMSG < SystemCallError
+ Errno: Integer
+ end
-class Errno::EAUTH < SystemCallError
-end
+ class EBADR < SystemCallError
+ Errno: Integer
+ end
-Errno::EAUTH::Errno: Integer
+ class EBADRPC < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADE < SystemCallError
-end
+ class EBADRQC < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADE::Errno: Integer
+ class EBADSLT < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADF < SystemCallError
-end
+ class EBFONT < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADF::Errno: Integer
+ class EBUSY < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADFD < SystemCallError
-end
+ class ECANCELED < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADFD::Errno: Integer
+ class ECAPMODE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADMSG < SystemCallError
-end
+ class ECHILD < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADMSG::Errno: Integer
+ class ECHRNG < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADR < SystemCallError
-end
+ class ECOMM < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADR::Errno: Integer
+ class ECONNABORTED < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADRPC < SystemCallError
-end
+ class ECONNREFUSED < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADRPC::Errno: Integer
+ class ECONNRESET < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADRQC < SystemCallError
-end
+ class EDEADLK < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADRQC::Errno: Integer
+ class EDEADLOCK < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBADSLT < SystemCallError
-end
+ class EDESTADDRREQ < SystemCallError
+ Errno: Integer
+ end
-Errno::EBADSLT::Errno: Integer
+ class EDEVERR < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBFONT < SystemCallError
-end
+ class EDOM < SystemCallError
+ Errno: Integer
+ end
-Errno::EBFONT::Errno: Integer
+ class EDOOFUS < SystemCallError
+ Errno: Integer
+ end
-class Errno::EBUSY < SystemCallError
-end
+ class EDOTDOT < SystemCallError
+ Errno: Integer
+ end
-Errno::EBUSY::Errno: Integer
+ class EDQUOT < SystemCallError
+ Errno: Integer
+ end
-class Errno::ECANCELED < SystemCallError
-end
+ class EEXIST < SystemCallError
+ Errno: Integer
+ end
-Errno::ECANCELED::Errno: Integer
+ class EFAULT < SystemCallError
+ Errno: Integer
+ end
-class Errno::ECAPMODE < SystemCallError
-end
+ class EFBIG < SystemCallError
+ Errno: Integer
+ end
-Errno::ECAPMODE::Errno: Integer
+ class EFTYPE < SystemCallError
+ Errno: Integer
+ end
-class Errno::ECHILD < SystemCallError
-end
+ class EHOSTDOWN < SystemCallError
+ Errno: Integer
+ end
-Errno::ECHILD::Errno: Integer
+ class EHOSTUNREACH < SystemCallError
+ Errno: Integer
+ end
-class Errno::ECHRNG < SystemCallError
-end
+ class EHWPOISON < SystemCallError
+ Errno: Integer
+ end
-Errno::ECHRNG::Errno: Integer
+ class EIDRM < SystemCallError
+ Errno: Integer
+ end
-class Errno::ECOMM < SystemCallError
-end
+ class EILSEQ < SystemCallError
+ Errno: Integer
+ end
-Errno::ECOMM::Errno: Integer
+ class EINPROGRESS < SystemCallError
+ Errno: Integer
+ end
-# Client sent TCP reset (RST) before server has accepted the connection
-# requested by client.
-#
-class Errno::ECONNABORTED < SystemCallError
-end
+ class EINTR < SystemCallError
+ Errno: Integer
+ end
-Errno::ECONNABORTED::Errno: Integer
+ class EINVAL < SystemCallError
+ Errno: Integer
+ end
-class Errno::ECONNREFUSED < SystemCallError
-end
+ class EIO < SystemCallError
+ Errno: Integer
+ end
-Errno::ECONNREFUSED::Errno: Integer
+ class EIPSEC < SystemCallError
+ Errno: Integer
+ end
-# Remote host reset the connection request.
-#
-class Errno::ECONNRESET < SystemCallError
-end
+ class EISCONN < SystemCallError
+ Errno: Integer
+ end
-Errno::ECONNRESET::Errno: Integer
+ class EISDIR < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDEADLK < SystemCallError
-end
+ class EISNAM < SystemCallError
+ Errno: Integer
+ end
-Errno::EDEADLK::Errno: Integer
+ class EKEYEXPIRED < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDEADLOCK < SystemCallError
-end
+ class EKEYREJECTED < SystemCallError
+ Errno: Integer
+ end
-Errno::EDEADLOCK::Errno: Integer
+ class EKEYREVOKED < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDESTADDRREQ < SystemCallError
-end
+ class EL2HLT < SystemCallError
+ Errno: Integer
+ end
-Errno::EDESTADDRREQ::Errno: Integer
+ class EL2NSYNC < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDOM < SystemCallError
-end
+ class EL3HLT < SystemCallError
+ Errno: Integer
+ end
-Errno::EDOM::Errno: Integer
+ class EL3RST < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDOOFUS < SystemCallError
-end
+ class ELAST < SystemCallError
+ Errno: Integer
+ end
-Errno::EDOOFUS::Errno: Integer
+ class ELIBACC < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDOTDOT < SystemCallError
-end
+ class ELIBBAD < SystemCallError
+ Errno: Integer
+ end
-Errno::EDOTDOT::Errno: Integer
+ class ELIBEXEC < SystemCallError
+ Errno: Integer
+ end
-class Errno::EDQUOT < SystemCallError
-end
+ class ELIBMAX < SystemCallError
+ Errno: Integer
+ end
-Errno::EDQUOT::Errno: Integer
+ class ELIBSCN < SystemCallError
+ Errno: Integer
+ end
-class Errno::EEXIST < SystemCallError
-end
+ class ELNRNG < SystemCallError
+ Errno: Integer
+ end
-Errno::EEXIST::Errno: Integer
+ class ELOOP < SystemCallError
+ Errno: Integer
+ end
-class Errno::EFAULT < SystemCallError
-end
+ class EMEDIUMTYPE < SystemCallError
+ Errno: Integer
+ end
-Errno::EFAULT::Errno: Integer
+ class EMFILE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EFBIG < SystemCallError
-end
+ class EMLINK < SystemCallError
+ Errno: Integer
+ end
-Errno::EFBIG::Errno: Integer
+ class EMSGSIZE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EFTYPE < SystemCallError
-end
+ class EMULTIHOP < SystemCallError
+ Errno: Integer
+ end
-Errno::EFTYPE::Errno: Integer
+ class ENAMETOOLONG < SystemCallError
+ Errno: Integer
+ end
-class Errno::EHOSTDOWN < SystemCallError
-end
+ class ENAVAIL < SystemCallError
+ Errno: Integer
+ end
-Errno::EHOSTDOWN::Errno: Integer
+ class ENEEDAUTH < SystemCallError
+ Errno: Integer
+ end
-class Errno::EHOSTUNREACH < SystemCallError
-end
+ class ENETDOWN < SystemCallError
+ Errno: Integer
+ end
-Errno::EHOSTUNREACH::Errno: Integer
+ class ENETRESET < SystemCallError
+ Errno: Integer
+ end
-class Errno::EHWPOISON < SystemCallError
-end
+ class ENETUNREACH < SystemCallError
+ Errno: Integer
+ end
-Errno::EHWPOISON::Errno: Integer
+ class ENFILE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EIDRM < SystemCallError
-end
+ class ENOANO < SystemCallError
+ Errno: Integer
+ end
-Errno::EIDRM::Errno: Integer
+ class ENOATTR < SystemCallError
+ Errno: Integer
+ end
-class Errno::EILSEQ < SystemCallError
-end
+ class ENOBUFS < SystemCallError
+ Errno: Integer
+ end
-Errno::EILSEQ::Errno: Integer
+ class ENOCSI < SystemCallError
+ Errno: Integer
+ end
-class Errno::EINPROGRESS < SystemCallError
-end
+ class ENODATA < SystemCallError
+ Errno: Integer
+ end
-Errno::EINPROGRESS::Errno: Integer
+ class ENODEV < SystemCallError
+ Errno: Integer
+ end
-class Errno::EINTR < SystemCallError
-end
+ class ENOENT < SystemCallError
+ Errno: Integer
+ end
-Errno::EINTR::Errno: Integer
+ class ENOEXEC < SystemCallError
+ Errno: Integer
+ end
-class Errno::EINVAL < SystemCallError
-end
+ class ENOKEY < SystemCallError
+ Errno: Integer
+ end
-Errno::EINVAL::Errno: Integer
+ class ENOLCK < SystemCallError
+ Errno: Integer
+ end
-class Errno::EIO < SystemCallError
-end
+ class ENOLINK < SystemCallError
+ Errno: Integer
+ end
-Errno::EIO::Errno: Integer
+ class ENOMEDIUM < SystemCallError
+ Errno: Integer
+ end
-class Errno::EIPSEC < SystemCallError
-end
+ class ENOMEM < SystemCallError
+ Errno: Integer
+ end
-Errno::EIPSEC::Errno: Integer
+ class ENOMSG < SystemCallError
+ Errno: Integer
+ end
-class Errno::EISCONN < SystemCallError
-end
+ class ENONET < SystemCallError
+ Errno: Integer
+ end
-Errno::EISCONN::Errno: Integer
+ class ENOPKG < SystemCallError
+ Errno: Integer
+ end
-class Errno::EISDIR < SystemCallError
-end
+ class ENOPOLICY < SystemCallError
+ Errno: Integer
+ end
-Errno::EISDIR::Errno: Integer
+ class ENOPROTOOPT < SystemCallError
+ Errno: Integer
+ end
-class Errno::EISNAM < SystemCallError
-end
+ class ENOSPC < SystemCallError
+ Errno: Integer
+ end
-Errno::EISNAM::Errno: Integer
+ class ENOSR < SystemCallError
+ Errno: Integer
+ end
-class Errno::EKEYEXPIRED < SystemCallError
-end
+ class ENOSTR < SystemCallError
+ Errno: Integer
+ end
-Errno::EKEYEXPIRED::Errno: Integer
+ class ENOSYS < SystemCallError
+ Errno: Integer
+ end
-class Errno::EKEYREJECTED < SystemCallError
-end
+ class ENOTBLK < SystemCallError
+ Errno: Integer
+ end
-Errno::EKEYREJECTED::Errno: Integer
+ class ENOTCAPABLE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EKEYREVOKED < SystemCallError
-end
+ class ENOTCONN < SystemCallError
+ Errno: Integer
+ end
-Errno::EKEYREVOKED::Errno: Integer
+ class ENOTDIR < SystemCallError
+ Errno: Integer
+ end
-class Errno::EL2HLT < SystemCallError
-end
+ class ENOTEMPTY < SystemCallError
+ Errno: Integer
+ end
-Errno::EL2HLT::Errno: Integer
+ class ENOTNAM < SystemCallError
+ Errno: Integer
+ end
-class Errno::EL2NSYNC < SystemCallError
-end
+ class ENOTRECOVERABLE < SystemCallError
+ Errno: Integer
+ end
-Errno::EL2NSYNC::Errno: Integer
+ class ENOTSOCK < SystemCallError
+ Errno: Integer
+ end
-class Errno::EL3HLT < SystemCallError
-end
+ class ENOTSUP < SystemCallError
+ Errno: Integer
+ end
-Errno::EL3HLT::Errno: Integer
+ class ENOTTY < SystemCallError
+ Errno: Integer
+ end
-class Errno::EL3RST < SystemCallError
-end
+ class ENOTUNIQ < SystemCallError
+ Errno: Integer
+ end
-Errno::EL3RST::Errno: Integer
+ class ENXIO < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELIBACC < SystemCallError
-end
+ class EOPNOTSUPP < SystemCallError
+ Errno: Integer
+ end
-Errno::ELIBACC::Errno: Integer
+ class EOVERFLOW < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELIBBAD < SystemCallError
-end
+ class EOWNERDEAD < SystemCallError
+ Errno: Integer
+ end
-Errno::ELIBBAD::Errno: Integer
+ class EPERM < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELIBEXEC < SystemCallError
-end
+ class EPFNOSUPPORT < SystemCallError
+ Errno: Integer
+ end
-Errno::ELIBEXEC::Errno: Integer
+ class EPIPE < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELIBMAX < SystemCallError
-end
+ class EPROCLIM < SystemCallError
+ Errno: Integer
+ end
-Errno::ELIBMAX::Errno: Integer
+ class EPROCUNAVAIL < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELIBSCN < SystemCallError
-end
+ class EPROGMISMATCH < SystemCallError
+ Errno: Integer
+ end
-Errno::ELIBSCN::Errno: Integer
+ class EPROGUNAVAIL < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELNRNG < SystemCallError
-end
+ class EPROTO < SystemCallError
+ Errno: Integer
+ end
-Errno::ELNRNG::Errno: Integer
+ class EPROTONOSUPPORT < SystemCallError
+ Errno: Integer
+ end
-class Errno::ELOOP < SystemCallError
-end
+ class EPROTOTYPE < SystemCallError
+ Errno: Integer
+ end
-Errno::ELOOP::Errno: Integer
+ class EPWROFF < SystemCallError
+ Errno: Integer
+ end
-class Errno::EMEDIUMTYPE < SystemCallError
-end
+ class EQFULL < SystemCallError
+ Errno: Integer
+ end
-Errno::EMEDIUMTYPE::Errno: Integer
+ class ERANGE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EMFILE < SystemCallError
-end
+ class EREMCHG < SystemCallError
+ Errno: Integer
+ end
-Errno::EMFILE::Errno: Integer
+ class EREMOTE < SystemCallError
+ Errno: Integer
+ end
-class Errno::EMLINK < SystemCallError
-end
+ class EREMOTEIO < SystemCallError
+ Errno: Integer
+ end
-Errno::EMLINK::Errno: Integer
+ class ERESTART < SystemCallError
+ Errno: Integer
+ end
-class Errno::EMSGSIZE < SystemCallError
-end
+ class ERFKILL < SystemCallError
+ Errno: Integer
+ end
-Errno::EMSGSIZE::Errno: Integer
+ class EROFS < SystemCallError
+ Errno: Integer
+ end
-class Errno::EMULTIHOP < SystemCallError
-end
+ class ERPCMISMATCH < SystemCallError
+ Errno: Integer
+ end
-Errno::EMULTIHOP::Errno: Integer
+ class ESHLIBVERS < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENAMETOOLONG < SystemCallError
-end
+ class ESHUTDOWN < SystemCallError
+ Errno: Integer
+ end
-Errno::ENAMETOOLONG::Errno: Integer
+ class ESOCKTNOSUPPORT < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENAVAIL < SystemCallError
-end
+ class ESPIPE < SystemCallError
+ Errno: Integer
+ end
-Errno::ENAVAIL::Errno: Integer
+ class ESRCH < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENEEDAUTH < SystemCallError
-end
+ class ESRMNT < SystemCallError
+ Errno: Integer
+ end
-Errno::ENEEDAUTH::Errno: Integer
+ class ESTALE < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENETDOWN < SystemCallError
-end
+ class ESTRPIPE < SystemCallError
+ Errno: Integer
+ end
-Errno::ENETDOWN::Errno: Integer
+ class ETIME < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENETRESET < SystemCallError
-end
+ class ETIMEDOUT < SystemCallError
+ Errno: Integer
+ end
-Errno::ENETRESET::Errno: Integer
+ class ETOOMANYREFS < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENETUNREACH < SystemCallError
-end
+ class ETXTBSY < SystemCallError
+ Errno: Integer
+ end
-Errno::ENETUNREACH::Errno: Integer
+ class EUCLEAN < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENFILE < SystemCallError
-end
+ class EUNATCH < SystemCallError
+ Errno: Integer
+ end
-Errno::ENFILE::Errno: Integer
+ class EUSERS < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENOANO < SystemCallError
-end
+ class EWOULDBLOCK < SystemCallError
+ Errno: Integer
+ end
-Errno::ENOANO::Errno: Integer
+ class EXDEV < SystemCallError
+ Errno: Integer
+ end
-class Errno::ENOATTR < SystemCallError
+ class EXFULL < SystemCallError
+ Errno: Integer
+ end
end
-
-Errno::ENOATTR::Errno: Integer
-
-class Errno::ENOBUFS < SystemCallError
-end
-
-Errno::ENOBUFS::Errno: Integer
-
-class Errno::ENOCSI < SystemCallError
-end
-
-Errno::ENOCSI::Errno: Integer
-
-class Errno::ENODATA < SystemCallError
-end
-
-Errno::ENODATA::Errno: Integer
-
-class Errno::ENODEV < SystemCallError
-end
-
-Errno::ENODEV::Errno: Integer
-
-class Errno::ENOENT < SystemCallError
-end
-
-Errno::ENOENT::Errno: Integer
-
-class Errno::ENOEXEC < SystemCallError
-end
-
-Errno::ENOEXEC::Errno: Integer
-
-class Errno::ENOKEY < SystemCallError
-end
-
-Errno::ENOKEY::Errno: Integer
-
-class Errno::ENOLCK < SystemCallError
-end
-
-Errno::ENOLCK::Errno: Integer
-
-class Errno::ENOLINK < SystemCallError
-end
-
-Errno::ENOLINK::Errno: Integer
-
-class Errno::ENOMEDIUM < SystemCallError
-end
-
-Errno::ENOMEDIUM::Errno: Integer
-
-class Errno::ENOMEM < SystemCallError
-end
-
-Errno::ENOMEM::Errno: Integer
-
-class Errno::ENOMSG < SystemCallError
-end
-
-Errno::ENOMSG::Errno: Integer
-
-class Errno::ENONET < SystemCallError
-end
-
-Errno::ENONET::Errno: Integer
-
-class Errno::ENOPKG < SystemCallError
-end
-
-Errno::ENOPKG::Errno: Integer
-
-class Errno::ENOPROTOOPT < SystemCallError
-end
-
-Errno::ENOPROTOOPT::Errno: Integer
-
-class Errno::ENOSPC < SystemCallError
-end
-
-Errno::ENOSPC::Errno: Integer
-
-class Errno::ENOSR < SystemCallError
-end
-
-Errno::ENOSR::Errno: Integer
-
-class Errno::ENOSTR < SystemCallError
-end
-
-Errno::ENOSTR::Errno: Integer
-
-class Errno::ENOSYS < SystemCallError
-end
-
-Errno::ENOSYS::Errno: Integer
-
-class Errno::ENOTBLK < SystemCallError
-end
-
-Errno::ENOTBLK::Errno: Integer
-
-class Errno::ENOTCAPABLE < SystemCallError
-end
-
-Errno::ENOTCAPABLE::Errno: Integer
-
-class Errno::ENOTCONN < SystemCallError
-end
-
-Errno::ENOTCONN::Errno: Integer
-
-class Errno::ENOTDIR < SystemCallError
-end
-
-Errno::ENOTDIR::Errno: Integer
-
-class Errno::ENOTEMPTY < SystemCallError
-end
-
-Errno::ENOTEMPTY::Errno: Integer
-
-class Errno::ENOTNAM < SystemCallError
-end
-
-Errno::ENOTNAM::Errno: Integer
-
-class Errno::ENOTRECOVERABLE < SystemCallError
-end
-
-Errno::ENOTRECOVERABLE::Errno: Integer
-
-class Errno::ENOTSOCK < SystemCallError
-end
-
-Errno::ENOTSOCK::Errno: Integer
-
-class Errno::ENOTSUP < SystemCallError
-end
-
-Errno::ENOTSUP::Errno: Integer
-
-class Errno::ENOTTY < SystemCallError
-end
-
-Errno::ENOTTY::Errno: Integer
-
-class Errno::ENOTUNIQ < SystemCallError
-end
-
-Errno::ENOTUNIQ::Errno: Integer
-
-class Errno::ENXIO < SystemCallError
-end
-
-Errno::ENXIO::Errno: Integer
-
-class Errno::EOPNOTSUPP < SystemCallError
-end
-
-Errno::EOPNOTSUPP::Errno: Integer
-
-class Errno::EOVERFLOW < SystemCallError
-end
-
-Errno::EOVERFLOW::Errno: Integer
-
-class Errno::EOWNERDEAD < SystemCallError
-end
-
-Errno::EOWNERDEAD::Errno: Integer
-
-class Errno::EPERM < SystemCallError
-end
-
-Errno::EPERM::Errno: Integer
-
-class Errno::EPFNOSUPPORT < SystemCallError
-end
-
-Errno::EPFNOSUPPORT::Errno: Integer
-
-class Errno::EPIPE < SystemCallError
-end
-
-Errno::EPIPE::Errno: Integer
-
-class Errno::EPROCLIM < SystemCallError
-end
-
-Errno::EPROCLIM::Errno: Integer
-
-class Errno::EPROCUNAVAIL < SystemCallError
-end
-
-Errno::EPROCUNAVAIL::Errno: Integer
-
-class Errno::EPROGMISMATCH < SystemCallError
-end
-
-Errno::EPROGMISMATCH::Errno: Integer
-
-class Errno::EPROGUNAVAIL < SystemCallError
-end
-
-Errno::EPROGUNAVAIL::Errno: Integer
-
-# Protocol error.
-#
-class Errno::EPROTO < SystemCallError
-end
-
-Errno::EPROTO::Errno: Integer
-
-class Errno::EPROTONOSUPPORT < SystemCallError
-end
-
-Errno::EPROTONOSUPPORT::Errno: Integer
-
-class Errno::EPROTOTYPE < SystemCallError
-end
-
-Errno::EPROTOTYPE::Errno: Integer
-
-class Errno::ERANGE < SystemCallError
-end
-
-Errno::ERANGE::Errno: Integer
-
-class Errno::EREMCHG < SystemCallError
-end
-
-Errno::EREMCHG::Errno: Integer
-
-class Errno::EREMOTE < SystemCallError
-end
-
-Errno::EREMOTE::Errno: Integer
-
-class Errno::EREMOTEIO < SystemCallError
-end
-
-Errno::EREMOTEIO::Errno: Integer
-
-class Errno::ERESTART < SystemCallError
-end
-
-Errno::ERESTART::Errno: Integer
-
-class Errno::ERFKILL < SystemCallError
-end
-
-Errno::ERFKILL::Errno: Integer
-
-class Errno::EROFS < SystemCallError
-end
-
-Errno::EROFS::Errno: Integer
-
-class Errno::ERPCMISMATCH < SystemCallError
-end
-
-Errno::ERPCMISMATCH::Errno: Integer
-
-class Errno::ESHUTDOWN < SystemCallError
-end
-
-Errno::ESHUTDOWN::Errno: Integer
-
-class Errno::ESOCKTNOSUPPORT < SystemCallError
-end
-
-Errno::ESOCKTNOSUPPORT::Errno: Integer
-
-class Errno::ESPIPE < SystemCallError
-end
-
-Errno::ESPIPE::Errno: Integer
-
-class Errno::ESRCH < SystemCallError
-end
-
-Errno::ESRCH::Errno: Integer
-
-class Errno::ESRMNT < SystemCallError
-end
-
-Errno::ESRMNT::Errno: Integer
-
-class Errno::ESTALE < SystemCallError
-end
-
-Errno::ESTALE::Errno: Integer
-
-class Errno::ESTRPIPE < SystemCallError
-end
-
-Errno::ESTRPIPE::Errno: Integer
-
-class Errno::ETIME < SystemCallError
-end
-
-Errno::ETIME::Errno: Integer
-
-class Errno::ETIMEDOUT < SystemCallError
-end
-
-Errno::ETIMEDOUT::Errno: Integer
-
-class Errno::ETOOMANYREFS < SystemCallError
-end
-
-Errno::ETOOMANYREFS::Errno: Integer
-
-class Errno::ETXTBSY < SystemCallError
-end
-
-Errno::ETXTBSY::Errno: Integer
-
-class Errno::EUCLEAN < SystemCallError
-end
-
-Errno::EUCLEAN::Errno: Integer
-
-class Errno::EUNATCH < SystemCallError
-end
-
-Errno::EUNATCH::Errno: Integer
-
-class Errno::EUSERS < SystemCallError
-end
-
-Errno::EUSERS::Errno: Integer
-
-class Errno::EWOULDBLOCK < SystemCallError
-end
-
-Errno::EWOULDBLOCK::Errno: Integer
-
-class Errno::EXDEV < SystemCallError
-end
-
-Errno::EXDEV::Errno: Integer
-
-class Errno::EXFULL < SystemCallError
-end
-
-Errno::EXFULL::Errno: Integer