Файл: system/vendor/laminas/laminas-servicemanager/src/Exception/ServiceNotFoundException.php
Строк: 47
<?php
/**
* @see https://github.com/laminas/laminas-servicemanager for the canonical source repository
* @copyright https://github.com/laminas/laminas-servicemanager/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-servicemanager/blob/master/LICENSE.md New BSD License
*/
namespace LaminasServiceManagerException;
use InteropContainerExceptionNotFoundException;
use InvalidArgumentException as SplInvalidArgumentException;
/**
* This exception is thrown when the service locator do not manage to find a
* valid factory to create a service
*/
class ServiceNotFoundException extends SplInvalidArgumentException implements
ExceptionInterface,
NotFoundException
{
}