mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
16 lines
381 B
PHP
16 lines
381 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2026 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Service\ServiceLocator;
|
|
|
|
use Combodo\iTop\Service\ServiceLocator\ServiceLocatorException;
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
|
|
class NotFoundException extends ServiceLocatorException implements NotFoundExceptionInterface
|
|
{
|
|
}
|