# File lib_ctrl/rucy/params.rb, line 858
    def path=(new_path)
      case (new_path)
      when String
        # checked at saving
      when NilClass
        # checked at saving
      else
        raise "not String: #{new_path.inspect}"
      end
      @attrs[path_tag] = new_path
    end