21 lines
399 B
PHP
21 lines
399 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Engelsystem\Http\Exceptions;
|
||
|
|
||
|
use Throwable;
|
||
|
|
||
|
class HttpNotFound extends HttpException
|
||
|
{
|
||
|
/**
|
||
|
* @param Throwable|null $previous
|
||
|
*/
|
||
|
public function __construct(
|
||
|
string $message = '',
|
||
|
array $headers = [],
|
||
|
int $code = 0,
|
||
|
Throwable $previous = null
|
||
|
) {
|
||
|
parent::__construct(404, $message, $headers, $code, $previous);
|
||
|
}
|
||
|
}
|