class Muwu::ProjectException::OptionValueNotUnderstood

Public Class Methods

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

Public Instance Methods

report() click to toggle source
# File lib/muwu/project_exception/option_value_not_understood.rb, line 12
def report
  "For option key `#{@key}`, the value `#{@value}` is not understood."
end
type() click to toggle source
# File lib/muwu/project_exception/option_value_not_understood.rb, line 17
def type
  :warning
end