zhamao-framework/src/ZM/Container/EntryResolutionException.php
2022-04-11 23:35:36 +08:00

13 lines
213 B
PHP

<?php
declare(strict_types=1);
namespace ZM\Container;
use Exception;
use Psr\Container\ContainerExceptionInterface;
class EntryResolutionException extends Exception implements ContainerExceptionInterface
{
}