class Macros4Cuke::UselessPhraseArgument

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 46
def initialize(anArgName)
  super("The phrase argument '#{anArgName}' does not appear in a sub-step.")
end