diff options
Diffstat (limited to 'Exception/NonceExpiredException.php')
-rw-r--r-- | Exception/NonceExpiredException.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Exception/NonceExpiredException.php b/Exception/NonceExpiredException.php deleted file mode 100644 index 931f6a2..0000000 --- a/Exception/NonceExpiredException.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -/* - * This file is part of the Symfony package. - * - * (c) Fabien Potencier <fabien.potencier@symfony-project.com> - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\HttpKernel\Security\EntryPoint; - -use Symfony\Component\Security\Exception\AuthenticationException; -use Symfony\Component\Security\Authentication\EntryPoint\AuthenticationEntryPointInterface; -use Symfony\Component\HttpFoundation\Response; -use Symfony\Component\HttpKernel\Log\LoggerInterface; - -/** - * NonceExpiredException is thrown when an authentication is rejected because - * the digest nonce has expired. - * - * @author Fabien Potencier <fabien.potencier@symfony-project.com> - */ -class NonceExpiredException extends AuthenticationException -{ -} |