X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/symfony/http-kernel/Exception
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
symfony
/
http-kernel
/
Exception
/
📁
..
📄
AccessDeniedHttpException.php
(858 B)
📄
BadRequestHttpException.php
(803 B)
📄
ConflictHttpException.php
(801 B)
📄
ControllerDoesNotReturnResponseException.php
(2.28 KB)
📄
GoneHttpException.php
(797 B)
📄
HttpException.php
(1.11 KB)
📄
HttpExceptionInterface.php
(710 B)
📄
LengthRequiredHttpException.php
(807 B)
📄
MethodNotAllowedHttpException.php
(954 B)
📄
NotAcceptableHttpException.php
(806 B)
📄
NotFoundHttpException.php
(808 B)
📄
PreconditionFailedHttpException.php
(811 B)
📄
PreconditionRequiredHttpException.php
(859 B)
📄
ServiceUnavailableHttpException.php
(1.01 KB)
📄
TooManyRequestsHttpException.php
(1.06 KB)
📄
UnauthorizedHttpException.php
(950 B)
📄
UnexpectedSessionUsageException.php
(416 B)
📄
UnprocessableEntityHttpException.php
(821 B)
📄
UnsupportedMediaTypeHttpException.php
(813 B)
Editing: AccessDeniedHttpException.php
<?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; /** * @author Fabien Potencier <fabien@symfony.com> * @author Christophe Coevoet <stof@notk.org> */ class AccessDeniedHttpException extends HttpException { /** * @param string $message The internal exception message * @param \Throwable $previous The previous exception * @param int $code The internal exception code */ public function __construct(string $message = null, \Throwable $previous = null, int $code = 0, array $headers = []) { parent::__construct(403, $message, $previous, $headers, $code); } }
Upload File
Create Folder