# File lib/chef_zero/data_store/raw_file_store.rb, line 107
      def delete(path)
        begin
          File.delete(path_to(path))
        rescue Errno::ENOENT
          raise DataNotFoundError.new(path)
        end
      end