foundHandler constant
int
const foundHandler
Value for found when a handler was found, but no result was produced.
That is, one or more rules exist where its pattern matches the URI path and the HTTP methods are the same. But all of those request handler functions did not produce a response.
This should result in a HTTP 401 Not Found status in the HTTP response. But, unlike foundNoResource, this value probably indicates an incomplete implementation or a bug. Since it is expected that a matching request handler should produce a response.
Implementation
static const int foundHandler = 2;