class Muwu::ProjectException::OptionKeyNotUnderstood
Public Class Methods
new(key)
click to toggle source
# File lib/muwu/project_exception/option_key_not_understood.rb, line 6 def initialize(key) @key = key end
Public Instance Methods
report()
click to toggle source
# File lib/muwu/project_exception/option_key_not_understood.rb, line 11 def report "The option key `#{@key}` is not understood." end
type()
click to toggle source
# File lib/muwu/project_exception/option_key_not_understood.rb, line 16 def type :warning end