跳至内容 跳至搜索

当无法建立数据库连接时引发此异常(例如,当 ActiveRecord::Base.lease_connection= 被赋予一个 nil 对象时)。

方法
N
S

类公共方法

new(message = nil, connection_pool: nil)

# File activerecord/lib/active_record/errors.rb, line 68
def initialize(message = nil, connection_pool: nil)
  super(message, connection_pool: connection_pool)
end

实例公共方法

set_pool(connection_pool)

# File activerecord/lib/active_record/errors.rb, line 72
def set_pool(connection_pool)
  unless @connection_pool
    @connection_pool = connection_pool
  end

  self
end