All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Exception
Error classes must inherit from RuntimeError instead.
RuntimeError
class C < Exception; end C = Class.new(Exception)
class C < RuntimeError; end C = Class.new(RuntimeError)