# File lib/cucumber/runtime/support_code.rb, line 107
      def invoke(step_name, multiline_argument=nil)
        begin
          step_match(step_name).invoke(multiline_argument)
        rescue Exception => e
          e.nested! if Undefined === e
          raise e
        end
      end