class ActiveRecordDoctor::Error::ConfigurationFileMissing
We don’t need extra documentation for error classes because of their extensive error messages. rubocop:disable Style/Documentation
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/active_record_doctor/errors.rb, line 63 def initialize super("Configuration file not found") end
Public Instance Methods
details()
click to toggle source
# File lib/active_record_doctor/errors.rb, line 67 def details <<-MESSAGE active_record_doctor attempted to read a configuration file but could not find it. Please ensure the file exists and is readable (which includes correct permissions are set). If it does not exist or it's readable but you still get this error then consider filing a bug report as active_record_doctor should not attempt to load non-existent configuration files. MESSAGE end