diff options
Diffstat (limited to 'Core/Exception/UnsupportedAccountException.php')
-rw-r--r-- | Core/Exception/UnsupportedAccountException.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Core/Exception/UnsupportedAccountException.php b/Core/Exception/UnsupportedAccountException.php new file mode 100644 index 0000000..0704b65 --- /dev/null +++ b/Core/Exception/UnsupportedAccountException.php @@ -0,0 +1,22 @@ +<?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; + +/** + * This exception is thrown when an account is reloaded from a provider which + * doesn't support the passed implementation of AccountInterface. + * + * @author Johannes M. Schmitt <schmittjoh@gmail.com> + */ +class UnsupportedAccountException extends AuthenticationServiceException +{ +}
\ No newline at end of file |