Exception: Sequence::UnreachableStepParameter

Inherits:
SequenceError show all
Defined in:
lib/lucid/sequence/sequence_errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(param) ⇒ UnreachableStepParameter

Returns a new instance of UnreachableStepParameter.



58
59
60
61
# File 'lib/lucid/sequence/sequence_errors.rb', line 58

def initialize(param)
  msg = "The step parameter '#{param}' does not appear in the phrase."
  super(msg)
end