class Muwu::ProjectException::OutlineStepNotUnderstood

Public Class Methods

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

Public Instance Methods

report() click to toggle source
# File lib/muwu/project_exception/outline_step_not_understood.rb, line 11
def report
  "Outline step `#{@step}` is not understood."
end
type() click to toggle source
# File lib/muwu/project_exception/outline_step_not_understood.rb, line 16
def type
  :warning
end