class Muwu::ProjectException::OptionsFileNotFound
Public Class Methods
new(project)
click to toggle source
# File lib/muwu/project_exception/options_file_not_found.rb, line 6 def initialize(project) @filename = project.options_filename end
Public Instance Methods
report()
click to toggle source
# File lib/muwu/project_exception/options_file_not_found.rb, line 11 def report "The options file `#{@filename}` could not be found." end
type()
click to toggle source
# File lib/muwu/project_exception/options_file_not_found.rb, line 16 def type :warning end