* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * NotFoundHttpException. * * @package Symfony * @subpackage Components_RequestHandler * @author Fabien Potencier */ class NotFoundHttpException extends HttpException { public function __construct($message = '') { if (!$message) { $message = 'Not Found'; } parent::__construct($message, 404); } }