Method: ActiveRecord::AdapterError#initialize

Defined in:
lib/active_record/errors.rb

#initialize(message = nil, connection_pool: nil) ⇒ AdapterError

Returns a new instance of AdapterError.



56
57
58
59
# File 'lib/active_record/errors.rb', line 56

def initialize(message = nil, connection_pool: nil)
  @connection_pool = connection_pool
  super(message)
end