diff options
author | Abdellatif Ait boudad <a.aitboudad@gmail.com> | 2015-07-01 14:16:54 +0000 |
---|---|---|
committer | Abdellatif Ait boudad <a.aitboudad@gmail.com> | 2015-07-01 14:16:54 +0000 |
commit | 93bccca789d9afdc88ec04bfae28a12e7ded3837 (patch) | |
tree | a6ab714cbf1cb8083bdfcbe80056242976c16a28 /Core/Exception | |
parent | c839c1382bfd96b6a356a2e9498bf5bd1ff775c1 (diff) | |
parent | d7338cbbe2c287f66bb7da9988fd8e8cd437ebb6 (diff) | |
download | symfony-security-93bccca789d9afdc88ec04bfae28a12e7ded3837.zip symfony-security-93bccca789d9afdc88ec04bfae28a12e7ded3837.tar.gz symfony-security-93bccca789d9afdc88ec04bfae28a12e7ded3837.tar.bz2 |
Merge remote-tracking branch 'origin/2.7' into 2.8
Conflicts:
src/Symfony/Bundle/FrameworkBundle/Command/TranslationDebugCommand.php
src/Symfony/Component/DependencyInjection/Tests/Compiler/ResolveDefinitionTemplatesPassTest.php
Diffstat (limited to 'Core/Exception')
-rw-r--r-- | Core/Exception/AccessDeniedException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Exception/AccessDeniedException.php b/Core/Exception/AccessDeniedException.php index 7c16afb..736a36b 100644 --- a/Core/Exception/AccessDeniedException.php +++ b/Core/Exception/AccessDeniedException.php @@ -18,7 +18,7 @@ namespace Symfony\Component\Security\Core\Exception; */ class AccessDeniedException extends \RuntimeException { - public function __construct($message = 'Access Denied', \Exception $previous = null) + public function __construct($message = 'Access Denied.', \Exception $previous = null) { parent::__construct($message, 403, $previous); } |