class Macros4Cuke::UnreachableSubstepArgument

Raised when one defines an argument name in a macro-step's phrase and that argument name does not appear in any sub-step.

Public Class Methods

new(anArgName) click to toggle source
Calls superclass method
# File lib/macros4cuke/exceptions.rb, line 56
def initialize(anArgName)
  msg = "The sub-step argument '#{anArgName}' does not appear in the phrase."
  super(msg)
end