Class: Muwu::ProjectException::OutlineStepNotUnderstood

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

Instance Method Summary collapse

Constructor Details

#initialize(step) ⇒ OutlineStepNotUnderstood

Returns a new instance of OutlineStepNotUnderstood.



6
7
8
# File 'lib/muwu/project_exception/outline_step_not_understood.rb', line 6

def initialize(step)
  @step = step
end

Instance Method Details

#reportObject



11
12
13
# File 'lib/muwu/project_exception/outline_step_not_understood.rb', line 11

def report
  "Outline step `#{@step}` is not understood."
end

#typeObject



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

def type
  :warning
end