class Muwu::ProjectException::CssManifestFileNotFound

Public Class Methods

new(css_manifest_filename) click to toggle source
# File lib/muwu/project_exception/css_manifest_file_not_found.rb, line 6
def initialize(css_manifest_filename)
  @css_manifest_filename = css_manifest_filename
end

Public Instance Methods

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