LogoutException.php 633 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Security\Core\Exception;
  11. /**
  12. * LogoutException is thrown when the account cannot be logged out.
  13. *
  14. * @author Jeremy Mikola <jmikola@gmail.com>
  15. */
  16. class LogoutException extends RuntimeException
  17. {
  18. public function __construct(string $message = 'Logout Exception', \Throwable $previous = null)
  19. {
  20. parent::__construct($message, 403, $previous);
  21. }
  22. }