vendor/symfony/http-kernel/Exception/HttpException.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <[email protected]>
  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\HttpKernel\Exception;
  11. /**
  12.  * HttpException.
  13.  *
  14.  * @author Kris Wallsmith <[email protected]>
  15.  */
  16. class HttpException extends \RuntimeException implements HttpExceptionInterface
  17. {
  18.     private int $statusCode;
  19.     private array $headers;
  20.     public function __construct(int $statusCodestring $message ''\Throwable $previous null, array $headers = [], int $code 0)
  21.     {
  22.         $this->statusCode $statusCode;
  23.         $this->headers $headers;
  24.         parent::__construct($message$code$previous);
  25.     }
  26.     public function getStatusCode(): int
  27.     {
  28.         return $this->statusCode;
  29.     }
  30.     public function getHeaders(): array
  31.     {
  32.         return $this->headers;
  33.     }
  34.     public function setHeaders(array $headers)
  35.     {
  36.         $this->headers $headers;
  37.     }
  38. }