Exception: SystemCallError
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
::StandardError,
::Exception
|
|
|
Instance Chain:
self,
::StandardError,
::Exception
|
|
| Inherits: |
StandardError
|
| Defined in: | error.c, error.c |
Overview
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 Method Summary
-
.===(other) ⇒ Boolean
Return
trueif the receiver is a genericSystemCallError, or if the error numbersselfand other are the same. -
.new(msg, errno) ⇒ system_call_error_subclass
constructor
If errno corresponds to a known system error code, constructs the appropriate ::Errno class for that error, otherwise constructs a generic
SystemCallErrorobject.
::Exception - Inherited
| .exception | With no argument, or if the argument is the same as the receiver, return the receiver. |
| .new | Construct a new ::Exception object, optionally passing in a message. |
Instance Method Summary
-
#errno ⇒ Integer
Return this SystemCallError's error number.
::Exception - Inherited
| #== | Equality—If obj is not an ::Exception, returns |
| #backtrace | Returns any backtrace associated with the exception. |
| #backtrace_locations | Returns any backtrace associated with the exception. |
| #cause | Returns the previous exception ($!) at the time this exception was raised. |
| #exception | With no argument, or if the argument is the same as the receiver, return the receiver. |
| #inspect | Return this exception's class name and message. |
| #message | Returns the result of invoking |
| #set_backtrace | Sets the backtrace information associated with |
| #to_s | Returns exception's message (or the name of the exception if no message is set). |
Constructor Details
.new(msg, errno) ⇒ system_call_error_subclass
Class Method Details
.===(other) ⇒ Boolean
Return true if the receiver is a generic SystemCallError, or if the error numbers self and other are the same.
Instance Method Details
#errno ⇒ Integer
Return this SystemCallError's error number.