remote forking: use the original http/https url in description
[phorkie.git] / src / phorkie / Exception / NotFound.php
1 <?php
2 namespace phorkie;
3
4 /**
5  * Something could not be found
6  */
7 class Exception_NotFound extends Exception
8 {
9     public function __construct($msg = '', $code = 0)
10     {
11         parent::__construct($msg, $code);
12         $this->httpStatusCode = 404;
13     }
14 }
15
16 ?>