a62d1f15fe693b52b88acdb50754232736e3df27
[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 ?>