Sends 404/Not Found to the client.
()
| 394 | * Sends <code>404/Not Found</code> to the client. |
| 395 | */ |
| 396 | public void notFound() { |
| 397 | logWarn("Not Found: " + request().getUri()); |
| 398 | sendStatusOnly(HttpResponseStatus.NOT_FOUND); |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Send just the status code without a body, used for 204 or 304 |
nothing calls this directly
no test coverage detected