Files
FreshRSS/lib/Minz/BadRequestException.php
AdamKorczandAlexandre Alapetite dc5cf8221b Limit the length and parentheses nesting depth of a search query (#9277)
* Limit the length and parentheses nesting depth of a search query.

* Use exception

---------

Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
2026-09-09 16:12:41 +02:00

11 lines
223 B
PHP

<?php
declare(strict_types=1);
/**
* An exception raised when user input is invalid.
* The front controller turns it into a HTTP 400 Bad Request error page.
*/
class Minz_BadRequestException extends Minz_Exception {
}