surat/vendor/psr/container/src/ContainerExceptionInterface...

13 lines
184 B
PHP
Raw Normal View History

2024-12-25 03:04:59 +00:00
<?php
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface extends Throwable
{
}