diff options
Diffstat (limited to 'Core/Exception/AuthenticationException.php')
-rw-r--r-- | Core/Exception/AuthenticationException.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Core/Exception/AuthenticationException.php b/Core/Exception/AuthenticationException.php index 074dad0..fbe10eb 100644 --- a/Core/Exception/AuthenticationException.php +++ b/Core/Exception/AuthenticationException.php @@ -15,18 +15,12 @@ namespace Symfony\Component\Security\Core\Exception; * AuthenticationException is the base class for all authentication exceptions. * * @author Fabien Potencier <fabien@symfony.com> + * @author Alexander <iam.asm89@gmail.com> */ class AuthenticationException extends \RuntimeException implements \Serializable { private $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; |