X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/symfony/http-kernel/Exception
home
/
prisjneg
/
public_html
/
vendor
/
symfony
/
http-kernel
/
Exception
/
📁
..
📄
AccessDeniedHttpException.php
(654 B)
📄
BadRequestHttpException.php
(599 B)
📄
ConflictHttpException.php
(597 B)
📄
ControllerDoesNotReturnResponseException.php
(2.24 KB)
📄
GoneHttpException.php
(593 B)
📄
HttpException.php
(1.07 KB)
📄
HttpExceptionInterface.php
(622 B)
📄
InvalidMetadataException.php
(348 B)
📄
LengthRequiredHttpException.php
(603 B)
📄
LockedHttpException.php
(599 B)
📄
MethodNotAllowedHttpException.php
(760 B)
📄
NotAcceptableHttpException.php
(602 B)
📄
NotFoundHttpException.php
(604 B)
📄
PreconditionFailedHttpException.php
(607 B)
📄
PreconditionRequiredHttpException.php
(655 B)
📄
ResolverNotFoundException.php
(891 B)
📄
ServiceUnavailableHttpException.php
(864 B)
📄
TooManyRequestsHttpException.php
(907 B)
📄
UnauthorizedHttpException.php
(754 B)
📄
UnexpectedSessionUsageException.php
(416 B)
📄
UnprocessableEntityHttpException.php
(617 B)
📄
UnsupportedMediaTypeHttpException.php
(609 B)
Editing: ResolverNotFoundException.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; class ResolverNotFoundException extends \RuntimeException { /** * @param string[] $alternatives */ public function __construct(string $name, array $alternatives = []) { $msg = sprintf('You have requested a non-existent resolver "%s".', $name); if ($alternatives) { if (1 === \count($alternatives)) { $msg .= ' Did you mean this: "'; } else { $msg .= ' Did you mean one of these: "'; } $msg .= implode('", "', $alternatives).'"?'; } parent::__construct($msg); } }
Upload File
Create Folder