# File lib/rack/directory.rb, line 121
    def entity_not_found
      body = "Entity not found: #{@path_info}\n"
      size = body.respond_to?(:bytesize) ? body.bytesize : body.size
      return [404, {"Content-Type" => "text/plain", "Content-Length" => size.to_s}, [body]]
    end