/opt/alt/php54/usr/share/pear/Symfony/Component/Security/Core/Exception
NameSizeModeActions
AccessDeniedException.php6450644editdlrm
AccountExpiredException.php6560644editdlrm
AccountStatusException.php13450644editdlrm
AuthenticationCredentialsNotFoundException.php7550644editdlrm
AuthenticationException.php18100644editdlrm
AuthenticationServiceException.php7650644editdlrm
BadCredentialsException.php6610644editdlrm
CookieTheftException.php7570644editdlrm
CredentialsExpiredException.php6820644editdlrm
DisabledException.php6440644editdlrm
ExceptionInterface.php4420644editdlrm
InsufficientAuthenticationException.php8200644editdlrm
InvalidArgumentException.php5140644editdlrm
InvalidCsrfTokenException.php6510644editdlrm
LockedException.php6340644editdlrm
LogoutException.php6270644editdlrm
NonceExpiredException.php6990644editdlrm
ProviderNotFoundException.php7610644editdlrm
RuntimeException.php4900644editdlrm
SessionUnavailableException.php9040644editdlrm
TokenNotFoundException.php6570644editdlrm
UnsupportedUserException.php5720644editdlrm
UsernameNotFoundException.php14050644editdlrm
Edit: /opt/alt/php54/usr/share/pear/Symfony/Component/Security/Core/Exception/LogoutException.php (627B)
* * 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; /** * LogoutException is thrown when the account cannot be logged out. * * @author Jeremy Mikola */ class LogoutException extends \RuntimeException { public function __construct($message = 'Logout Exception', \Exception $previous = null) { parent::__construct($message, 403, $previous); } }