diff options
Diffstat (limited to 'Core/Exception/InsufficientAuthenticationException.php')
-rw-r--r-- | Core/Exception/InsufficientAuthenticationException.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Core/Exception/InsufficientAuthenticationException.php b/Core/Exception/InsufficientAuthenticationException.php new file mode 100644 index 0000000..3fbba35 --- /dev/null +++ b/Core/Exception/InsufficientAuthenticationException.php @@ -0,0 +1,23 @@ +<?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\Core\Exception; + +/** + * InsufficientAuthenticationException is thrown if the user credentials are not sufficiently trusted. + * + * This is the case when a user is anonymous and the resource to be displayed has an access role. + * + * @author Fabien Potencier <fabien.potencier@symfony-project.com> + */ +class InsufficientAuthenticationException extends AuthenticationException +{ +} |