1 | <?php |
||
16 | class NotFoundHttpException extends HttpException |
||
17 | { |
||
18 | /** |
||
19 | * Constructor. |
||
20 | * @param string $message error message |
||
21 | * @param integer $code error code |
||
22 | * @param \Exception $previous The previous exception used for the exception chaining. |
||
23 | */ |
||
24 | 2 | public function __construct($message = null, $code = 0, \Exception $previous = null) |
|
28 | } |
||
29 |