Class: Muwu::ProjectException::CssManifestFileNotFound

Inherits:
Object
  • Object
show all
Defined in:
lib/muwu/project_exception/css_manifest_file_not_found.rb

Instance Method Summary collapse

Constructor Details

#initialize(css_manifest_filename) ⇒ CssManifestFileNotFound

Returns a new instance of CssManifestFileNotFound.



6
7
8
# 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

Instance Method Details

#reportObject



11
12
13
# 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

#typeObject



16
17
18
# File 'lib/muwu/project_exception/css_manifest_file_not_found.rb', line 16

def type
  :warning
end