Skip to content

Instantly share code, notes, and snippets.

@alxekb
Created October 20, 2020 10:53
Show Gist options
  • Save alxekb/399326126070a285af2d4b17e965d0a5 to your computer and use it in GitHub Desktop.
Save alxekb/399326126070a285af2d4b17e965d0a5 to your computer and use it in GitHub Desktop.
ruby exception subclasses
# 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