class Macros4Cuke::DuplicateMacroError

Raised when one attempts to define a new macro that has the same phrase as an existing macro.

Public Class Methods

new(aPhrase) click to toggle source
Calls superclass method
# File lib/macros4cuke/exceptions.rb, line 38
def initialize(aPhrase)
  super("A macro-step with phrase '#{aPhrase}' already exists.")
end