Exception: Macros4Cuke::UnknownArgumentError

Inherits:
Macros4CukeError show all
Defined in:
lib/macros4cuke/exceptions.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(argName) ⇒ UnknownArgumentError

Returns a new instance of UnknownArgumentError.



105
106
107
# File 'lib/macros4cuke/exceptions.rb', line 105

def initialize(argName)
  super("Unknown macro-step argument '#{argName}'.")
end