diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-05-30 14:28:54 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-05-30 14:28:54 +0200 |
commit | 2798d3b4b0f385df4547aaceedf8eac93111520c (patch) | |
tree | fd0237dd131869bf5d61fe33c2a564a8c6efd081 /Core | |
parent | 127c65198b16c3f7a48fa5d19a315b3e34527178 (diff) | |
parent | 2acac06004a24699d9a5c257d143446272b88d38 (diff) | |
download | symfony-security-2798d3b4b0f385df4547aaceedf8eac93111520c.zip symfony-security-2798d3b4b0f385df4547aaceedf8eac93111520c.tar.gz symfony-security-2798d3b4b0f385df4547aaceedf8eac93111520c.tar.bz2 |
merged origin/master
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Exception/SessionUnavailableException.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Core/Exception/SessionUnavailableException.php b/Core/Exception/SessionUnavailableException.php new file mode 100644 index 0000000..a00c897 --- /dev/null +++ b/Core/Exception/SessionUnavailableException.php @@ -0,0 +1,27 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.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 no session is available. + * + * Possible reasons for this are: + * + * a) The session timed-out because the user waited too long. + * b) The user has disabled cookies, and a new session is started on each + * request. + * + * @author Johannes M. Schmitt <schmittjoh@gmail.com> + */ +class SessionUnavailableException extends AuthenticationException +{ +}
\ No newline at end of file |