summaryrefslogtreecommitdiffstats
path: root/Core/Exception
diff options
context:
space:
mode:
authorAlexander <iam.asm89@gmail.com>2012-07-15 15:15:05 +0200
committerAlexander <iam.asm89@gmail.com>2013-01-07 20:58:57 +0100
commitce45cc1049e24b3400b5f5ba1f40f8ba53866eeb (patch)
tree4933e49de8e6e7ea450598ea645ba6ef861c17bf /Core/Exception
parent83f4684445473c3a05dc0e06a2b74db3b5626a65 (diff)
downloadsymfony-security-ce45cc1049e24b3400b5f5ba1f40f8ba53866eeb.zip
symfony-security-ce45cc1049e24b3400b5f5ba1f40f8ba53866eeb.tar.gz
symfony-security-ce45cc1049e24b3400b5f5ba1f40f8ba53866eeb.tar.bz2
[Security] Change signature of `AuthenticationException` to match `\Exception`
Diffstat (limited to 'Core/Exception')
-rw-r--r--Core/Exception/AuthenticationException.php8
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;