This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Components/RequestHandler/Exception/NotFoundHttpException.php

17 lines
272 B
PHP
Raw Normal View History

<?php
namespace Symfony\Components\RequestHandler\Exception;
class NotFoundHttpException extends HttpException
{
public function __construct($message = '')
{
if (!$message)
{
$message = 'Not Found';
}
parent::__construct($message, 404);
}
}