diff options
Diffstat (limited to 'Exception/UsernameNotFoundException.php')
-rw-r--r-- | Exception/UsernameNotFoundException.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Exception/UsernameNotFoundException.php b/Exception/UsernameNotFoundException.php new file mode 100644 index 0000000..f126c23 --- /dev/null +++ b/Exception/UsernameNotFoundException.php @@ -0,0 +1,21 @@ +<?php + +namespace Symfony\Component\Security\Exception; + +/* + * 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. + */ + +/** + * UsernameNotFoundException is thrown if a User cannot be found by its username. + * + * @author Fabien Potencier <fabien.potencier@symfony-project.com> + */ +class UsernameNotFoundException extends AuthenticationException +{ +} |