vendor/symfony/security-core/Exception/AccessDeniedException.php line 19

Open in your IDE?
  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.  * AccessDeniedException is thrown when the account has not the required role.
  13.  *
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  */
  16. class AccessDeniedException extends RuntimeException
  17. {
  18.     private array $attributes = [];
  19.     private mixed $subject null;
  20.     public function __construct(string $message 'Access Denied.'\Throwable $previous null)
  21.     {
  22.         parent::__construct($message403$previous);
  23.     }
  24.     public function getAttributes(): array
  25.     {
  26.         return $this->attributes;
  27.     }
  28.     public function setAttributes(array|string $attributes)
  29.     {
  30.         $this->attributes = (array) $attributes;
  31.     }
  32.     public function getSubject(): mixed
  33.     {
  34.         return $this->subject;
  35.     }
  36.     public function setSubject(mixed $subject)
  37.     {
  38.         $this->subject $subject;
  39.     }
  40. }