mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-27 08:14:28 +00:00
14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\HttpKernel\Tests\Exception;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\NotAcceptableHttpException;
|
|
|
|
class NotAcceptableHttpExceptionTest extends HttpExceptionTest
|
|
{
|
|
protected function createException()
|
|
{
|
|
return new NotAcceptableHttpException();
|
|
}
|
|
}
|