lihai-oa/vendor/psr/container/src/ContainerExceptionInterface...

13 lines
184 B
PHP
Raw Permalink Normal View History

2023-10-24 15:28:23 +08:00
<?php
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface extends Throwable
{
}