class Muwu::ProjectException::TextSourceFileNotFound
Public Class Methods
new(text_readfile)
click to toggle source
# File lib/muwu/project_exception/text_source_file_not_found.rb, line 6 def initialize(text_readfile) @filename = text_readfile.source_filename @numbering = text_readfile.numbering @text_root_name = text_readfile.text_root_name end
Public Instance Methods
report()
click to toggle source
# File lib/muwu/project_exception/text_source_file_not_found.rb, line 13 def report "file not found `#{@filename}` (#{@text_root_name} #{@numbering})" end
type()
click to toggle source
# File lib/muwu/project_exception/text_source_file_not_found.rb, line 18 def type :warning end