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