Sends a 400 error page to the client. Handles responses from deprecated API calls @param explain The string describing why the request is bad.
(final String explain)
| 391 | * @param explain The string describing why the request is bad. |
| 392 | */ |
| 393 | public void badRequest(final String explain) { |
| 394 | badRequest(new BadRequestException(explain)); |
| 395 | } |
| 396 | |
| 397 | /** |
| 398 | * Sends an error message to the client. Handles responses from |