13 lines
235 B
PHP
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
|
|
{
|
|
}
|