Files
XC_VM/src/Core/Container/Psr/NotFoundException.php
T
Divarion_D 758a9cab0b style: apply K&R + tab formatting across the codebase (make cs-fix)
Mechanical, behaviour-preserving reformat produced by 'make cs-fix' under
the new build/phpcs.xml.dist ruleset: K&R braces, tab indentation, and the
other whitespace normalisations. No logic changes.
2026-09-13 14:14:23 +03:00

15 lines
366 B
PHP

<?php
namespace XcVm\Core\Container\Psr;
use XcVm\Core\Exception\Container\ContainerException;
/**
* Thrown when a service identifier is not found in the container.
*
* @package XC_VM_Core_Container
* @license AGPL-3.0 https://www.gnu.org/licenses/agpl-3.0.html
*/
class NotFoundException extends ContainerException implements NotFoundExceptionInterface {
}