summaryrefslogtreecommitdiffstats
path: root/Exception/AuthenticationException.php
diff options
context:
space:
mode:
Diffstat (limited to 'Exception/AuthenticationException.php')
-rw-r--r--Exception/AuthenticationException.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/Exception/AuthenticationException.php b/Exception/AuthenticationException.php
deleted file mode 100644
index 59203b6..0000000
--- a/Exception/AuthenticationException.php
+++ /dev/null
@@ -1,39 +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\Security\Exception;
-
-/**
- * AuthenticationException is the base class for all authentication exceptions.
- *
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
-class AuthenticationException extends \RuntimeException
-{
- protected $extraInformation;
-
- public function __construct($message, $extraInformation = null, $code = 0, \Exception $previous = null)
- {
- parent::__construct($message, $code, $previous);
-
- $this->extraInformation = $extraInformation;
- }
-
- public function getExtraInformation()
- {
- return $this->extraInformation;
- }
-
- public function setExtraInformation($extraInformation)
- {
- $this->extraInformation = $extraInformation;
- }
-}