github/vendor/psr/container/src/ContainerExceptionInterface.php
2025-04-12 19:11:43 +08:00

13 lines
184 B
PHP
Executable File

<?php
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface extends Throwable
{
}