class Muwu::ProjectException::OutlineFileNotFound

Public Class Methods

new(project) click to toggle source
# File lib/muwu/project_exception/outline_file_not_found.rb, line 6
def initialize(project)
  @filename = project.outline_filename
end

Public Instance Methods

report() click to toggle source
# File lib/muwu/project_exception/outline_file_not_found.rb, line 11
def report
  "The outline file `#{@filename}` could not be found."
end
type() click to toggle source
# File lib/muwu/project_exception/outline_file_not_found.rb, line 16
def type
  :warning
end