module Protocol::HTTP::Middleware::NotFound

def self.call(request)

@returns [Response] The response object, which always contains a 404 status code.
@parameter request [Request] The request object.

Call the middleware with the given request, always returning a 404 response. This middleware is useful as a default.
def self.call(request)
	Response[404]
end

def self.close

Close the middleware - idempotent no-op.
def self.close
end