summaryrefslogtreecommitdiffstats
path: root/Exception
diff options
context:
space:
mode:
authorJohannes Schmitt <schmittjoh@gmail.com>2010-12-16 22:27:16 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2010-12-18 08:10:53 +0100
commit31f146e12fa9b03f083d1f31b1eca0f0dd9c5b3d (patch)
tree7f64999a11c9ce8cd9de91669fa597a390c369bd /Exception
parenta77e6b5f60bd1dac4d7ba19a900d72ae45d9fe26 (diff)
downloadsymfony-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.php13
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