summaryrefslogtreecommitdiffstats
path: root/Core/Exception/NonceExpiredException.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/Exception/NonceExpiredException.php')
-rw-r--r--Core/Exception/NonceExpiredException.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/Core/Exception/NonceExpiredException.php b/Core/Exception/NonceExpiredException.php
new file mode 100644
index 0000000..5e6a0c5
--- /dev/null
+++ b/Core/Exception/NonceExpiredException.php
@@ -0,0 +1,27 @@
+<?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\Core\Exception\AuthenticationException;
+use Symfony\Component\Security\Core\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
+{
+}