class Macros4Cuke::UnknownArgumentError

Raised when one invokes a macro-step with an argument that has an unknown name.

Public Class Methods

new(argName) click to toggle source
Calls superclass method
# File lib/macros4cuke/exceptions.rb, line 105
def initialize(argName)
  super("Unknown macro-step argument '#{argName}'.")
end