diff options
author | Johannes Schmitt <schmittjoh@gmail.com> | 2010-12-16 22:27:16 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2010-12-18 08:10:53 +0100 |
commit | 31f146e12fa9b03f083d1f31b1eca0f0dd9c5b3d (patch) | |
tree | 7f64999a11c9ce8cd9de91669fa597a390c369bd /Exception | |
parent | a77e6b5f60bd1dac4d7ba19a900d72ae45d9fe26 (diff) | |
download | symfony-security-31f146e12fa9b03f083d1f31b1eca0f0dd9c5b3d.zip symfony-security-31f146e12fa9b03f083d1f31b1eca0f0dd9c5b3d.tar.gz symfony-security-31f146e12fa9b03f083d1f31b1eca0f0dd9c5b3d.tar.bz2 |
remove user provider name
Diffstat (limited to 'Exception')
-rw-r--r-- | Exception/UnsupportedAccountException.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Exception/UnsupportedAccountException.php b/Exception/UnsupportedAccountException.php new file mode 100644 index 0000000..841e0b7 --- /dev/null +++ b/Exception/UnsupportedAccountException.php @@ -0,0 +1,13 @@ +<?php + +namespace Symfony\Component\Security\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 |