mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-09-12 21:50:57 -04:00
* Limit the length and parentheses nesting depth of a search query. * Use exception --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
11 lines
223 B
PHP
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 {
|
|
|
|
}
|