show which repository gets indexed
[phorkie.git] / src / phorkie / Exception / Input.php
1 <?php
2 namespace phorkie;
3
4 /**
5  * Input from e.g. the URL is invalid, like a non-numeric string when one was
6  * expected
7  */
8 class Exception_Input extends Exception
9 {
10     public function __construct($msg = '', $code = 0)
11     {
12         parent::__construct($msg, $code);
13         $this->httpStatusCode = 400;
14     }
15 }
16
17 ?>