<?php namespace Symfony\Component\HttpKernel\Tests\Exception; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; class NotFoundHttpExceptionTest extends HttpExceptionTest { protected function createException(string $message = null, \Throwable $previous = null, ?int $code = 0, array $headers = []) { return new NotFoundHttpException($message, $previous, $code, $headers); } }