| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class NotFoundHttpException extends HttpException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $message The internal exception message |
||
| 11 | * @param \Exception $previous The previous exception |
||
| 12 | * @param int $code The internal exception code |
||
| 13 | * @param array $headers |
||
| 14 | */ |
||
| 15 | 2 | public function __construct(string $message = null, \Exception $previous = null, int $code = 0, array $headers = array()) |
|
| 20 |