Files
molenda.net/eeeeee/vendor/league/container/src/Exception/ContainerException.php
T
Sebastian Molenda ab96d82fcf init
2026-05-12 21:10:38 +02:00

13 lines
235 B
PHP

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