foundMethod constant
Value for found when at least one handler for the HTTP method was found, but none of them matched the request path. This value has been deprecated in woomera 8.0.0. In previous releases, it was implemented incorrect. THis value was used when there existed one or more rules that matched the HTTP method (but could be for any pattern). It was intended for a HTTP 401 Not Found status; as opposed to foundNothing which was intended to produce a HTTP 405 Method Not Found status — that behaviour was not correct. Use foundNoResource instead.
Implementation
/// This value has been deprecated in woomera 8.0.0. In previous releases,
/// it was implemented incorrect. THis value was used when there existed
/// one or more rules that matched the HTTP method (but could be for any
/// pattern). It was intended for a _HTTP 401 Not Found_ status;
/// as opposed to _foundNothing_ which was intended to produce a
/// _HTTP 405 Method Not Found_ status — that behaviour was not correct.
/// Use [foundNoResource] instead.
@Deprecated('use foundNoResource instead')
static const int foundMethod = 1;