Superclass for all errors raised from an Active Record adapter.
Methods
Attributes
[R] | connection_pool |
Class Public methods
new(message = nil, connection_pool: nil)
📝 Source code
# File activerecord/lib/active_record/errors.rb, line 60
def initialize(message = nil, connection_pool: nil)
@connection_pool = connection_pool
super(message)
end
🔎 See on GitHub