Exception: ActiveRecord::DatabaseConnectionError
- Inherits:
-
ConnectionNotEstablished
- Object
- StandardError
- ActiveRecordError
- ConnectionNotEstablished
- ActiveRecord::DatabaseConnectionError
- Defined in:
- activerecord/lib/active_record/errors.rb
Overview
Raised when connection to the database could not been established because it was not able to connect to the host or when the authorization failed.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ DatabaseConnectionError
constructor
A new instance of DatabaseConnectionError.
Constructor Details
#initialize(message = nil) ⇒ DatabaseConnectionError
Returns a new instance of DatabaseConnectionError.
73 74 75 |
# File 'activerecord/lib/active_record/errors.rb', line 73 def initialize( = nil) super( || "Database connection error") end |
Class Method Details
.hostname_error(hostname) ⇒ Object
78 79 80 81 82 83 |
# File 'activerecord/lib/active_record/errors.rb', line 78 def hostname_error(hostname) DatabaseConnectionError.new(<<~MSG) There is an issue connecting with your hostname: #{hostname}.\n Please check your database configuration and ensure there is a valid connection to your database. MSG end |
.username_error(username) ⇒ Object
85 86 87 88 89 90 |
# File 'activerecord/lib/active_record/errors.rb', line 85 def username_error(username) DatabaseConnectionError.new(<<~MSG) There is an issue connecting to your database with your username/password, username: #{username}.\n Please check your database configuration to ensure the username/password are valid. MSG end |