aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/Exception/NotFound.php
blob: 450b9f96ddbf5ebfe72c77fa2a10af531ee26bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
namespace phorkie;

/**
 * Something could not be found
 */
class Exception_NotFound extends Exception
{
    public function __construct($msg = '', $code = 0)
    {
        parent::__construct($msg, $code);
        $this->httpStatusCode = 404;
    }
}

?>