class Macros4Cuke::DataTableNotFound

Raised when one invokes a macro-step without a required data table argument. The exception is raised only only via Cucumber (steps)

Public Class Methods

new(phrase) click to toggle source
Calls superclass method
# File lib/macros4cuke/exceptions.rb, line 115
def initialize(phrase)
  msg = "The step with phrase [#{phrase}]: requires a data table."
  super(msg)
end