class Muwu::ProjectException::CompiledFolderNotFound

Public Class Methods

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

Public Instance Methods

report() click to toggle source
# File lib/muwu/project_exception/compiled_folder_not_found.rb, line 11
def report
  "The folder for compiled documents `#{@compiled_folder}` could not be found."
end
type() click to toggle source
# File lib/muwu/project_exception/compiled_folder_not_found.rb, line 16
def type
  :fatal
end