/home/techb158/ileadtechnology.com/SSM/vendor/symfony/http-kernel/Exception
NameSizeModeActions
AccessDeniedHttpException.php8580644editdlrm
BadRequestHttpException.php8030644editdlrm
ConflictHttpException.php8010644editdlrm
ControllerDoesNotReturnResponseException.php23340644editdlrm
GoneHttpException.php7970644editdlrm
HttpException.php11330644editdlrm
HttpExceptionInterface.php7100644editdlrm
LengthRequiredHttpException.php8070644editdlrm
MethodNotAllowedHttpException.php9540644editdlrm
NotAcceptableHttpException.php8060644editdlrm
NotFoundHttpException.php8080644editdlrm
PreconditionFailedHttpException.php8110644editdlrm
PreconditionRequiredHttpException.php8590644editdlrm
ServiceUnavailableHttpException.php10380644editdlrm
TooManyRequestsHttpException.php10810644editdlrm
UnauthorizedHttpException.php9500644editdlrm
UnprocessableEntityHttpException.php8210644editdlrm
UnsupportedMediaTypeHttpException.php8130644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/symfony/http-kernel/Exception/HttpException.php (1133B)
* * 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 */ 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; } }