mirror of
https://github.com/Vateron-Media/XC_VM.git
synced 2026-09-19 12:01:38 +02:00
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.
15 lines
366 B
PHP
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 {
|
|
}
|