summaryrefslogtreecommitdiffstats
path: root/Core/Exception/TokenNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/Exception/TokenNotFoundException.php')
-rw-r--r--Core/Exception/TokenNotFoundException.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/Core/Exception/TokenNotFoundException.php b/Core/Exception/TokenNotFoundException.php
new file mode 100644
index 0000000..1c13421
--- /dev/null
+++ b/Core/Exception/TokenNotFoundException.php
@@ -0,0 +1,20 @@
+<?php
+namespace Symfony\Component\Security\Core\Exception;
+
+/*
+ * 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.
+ */
+
+/**
+ * TokenNotFoundException is thrown if a Token cannot be found.
+ *
+ * @author Johannes M. Schmitt <schmittjoh@gmail.com>
+ */
+class TokenNotFoundException extends AuthenticationException
+{
+}