class ConfigModule::ConfigFileNotFound

for when config_file path isn't found

Attributes

config_file[R]

Public Class Methods

new(config_file) click to toggle source
# File lib/config_module/exceptions.rb, line 30
def initialize config_file
  @config_file = config_file
end

Public Instance Methods

message() click to toggle source
# File lib/config_module/exceptions.rb, line 35
def message
  "config_file `#{config_file}` not found."\
  "Make sure it exists in the location specified."
end