# File lib/celerity/elements/table.rb, line 77
    def child_row(index)
      assert_exists

      if (index - Celerity.index_offset) >= @rows.length
        raise UnknownRowException, "Unable to locate a row at index #{index}"
      end

      TableRow.new(self, :object, @rows[index - Celerity.index_offset])
    end