69d362e3f6cf9fa648fb2f8ef9513aff2068554d
[yaffs-website] / PreconditionRequiredHttpExceptionTest.php
1 <?php
2
3 namespace Symfony\Component\HttpKernel\Tests\Exception;
4
5 use Symfony\Component\HttpKernel\Exception\PreconditionRequiredHttpException;
6
7 class PreconditionRequiredHttpExceptionTest extends HttpExceptionTest
8 {
9     protected function createException()
10     {
11         return new PreconditionRequiredHttpException();
12     }
13 }