__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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\DependencyInjection\Exception;
use Psr\Container\NotFoundExceptionInterface;
/**
* This exception is thrown when a non-existent service is requested.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class ServiceNotFoundException extends InvalidArgumentException implements NotFoundExceptionInterface
{
private string $id;
private ?string $sourceId;
private array $alternatives;
public function __construct(string $id, ?string $sourceId = null, ?\Throwable $previous = null, array $alternatives = [], ?string $msg = null)
{
if (null !== $msg) {
// no-op
} elseif (null === $sourceId) {
$msg = sprintf('You have requested a non-existent service "%s".', $id);
} else {
$msg = sprintf('The service "%s" has a dependency on a non-existent service "%s".', $sourceId, $id);
}
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, 0, $previous);
$this->id = $id;
$this->sourceId = $sourceId;
$this->alternatives = $alternatives;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return string|null
*/
public function getSourceId()
{
return $this->sourceId;
}
/**
* @return array
*/
public function getAlternatives()
{
return $this->alternatives;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AutowiringFailedException.php | File | 2.01 KB | 0644 |
|
| BadMethodCallException.php | File | 468 B | 0644 |
|
| EnvNotFoundException.php | File | 486 B | 0644 |
|
| EnvParameterException.php | File | 777 B | 0644 |
|
| ExceptionInterface.php | File | 610 B | 0644 |
|
| InvalidArgumentException.php | File | 537 B | 0644 |
|
| InvalidParameterTypeException.php | File | 1.31 KB | 0644 |
|
| LogicException.php | File | 444 B | 0644 |
|
| OutOfBoundsException.php | File | 462 B | 0644 |
|
| ParameterCircularReferenceException.php | File | 978 B | 0644 |
|
| ParameterNotFoundException.php | File | 3.76 KB | 0644 |
|
| RuntimeException.php | File | 507 B | 0644 |
|
| ServiceCircularReferenceException.php | File | 1.08 KB | 0644 |
|
| ServiceNotFoundException.php | File | 1.9 KB | 0644 |
|