diff options
author | Christian Flothmann <christian.flothmann@xabbuh.de> | 2015-06-29 20:12:36 +0200 |
---|---|---|
committer | Christian Flothmann <christian.flothmann@xabbuh.de> | 2015-06-29 20:24:24 +0200 |
commit | 6a96b68515bba1ae9e275ff0498e88659d3f5354 (patch) | |
tree | a08fcad4fad256f7ac4c66f3b4095ec3a7f95173 /Core/Exception | |
parent | 243e617125554145c199378a0d9616061cf59c57 (diff) | |
download | symfony-security-6a96b68515bba1ae9e275ff0498e88659d3f5354.zip symfony-security-6a96b68515bba1ae9e275ff0498e88659d3f5354.tar.gz symfony-security-6a96b68515bba1ae9e275ff0498e88659d3f5354.tar.bz2 |
unify default AccessDeniedExeption message
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); } |