class Bellboy::ConfigNotFound
Invalid configuration file path
Public Class Methods
new(configpath)
click to toggle source
# File lib/bellboy/errors.rb, line 66 def initialize(configpath) @configpath = configpath end
Public Instance Methods
to_s()
click to toggle source
# File lib/bellboy/errors.rb, line 70 def to_s "Config file #{@configpath} does not exist" end