Created
October 20, 2020 10:53
-
-
Save alxekb/399326126070a285af2d4b17e965d0a5 to your computer and use it in GitHub Desktop.
ruby exception subclasses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://ruby-doc.org/core-2.5.0/Exception.html | |
- NoMemoryError | |
- ScriptError | |
- LoadError | |
- NotImplementedError | |
- SyntaxError | |
- SecurityError | |
- SignalException | |
- Interrupt | |
- StandardError (default for `rescue`) | |
- ArgumentError | |
- UncaughtThrowError | |
- EncodingError | |
- FiberError | |
- IOError | |
- EOFError | |
- IndexError | |
- KeyError | |
- StopIteration | |
- LocalJumpError | |
- NameError | |
- NoMethodError | |
- RangeError | |
- FloatDomainError | |
- RegexpError | |
- RuntimeError (default for `raise`) | |
- SystemCallError | |
- Errno::* | |
- ThreadError | |
- TypeError | |
- ZeroDivisionError | |
- SystemExit | |
- SystemStackError | |
- fatal (impossible to rescue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment