Files
TimeTrex/vendor/psr/container/src/ContainerExceptionInterface.php

13 lines
184 B
PHP
Raw Normal View History

2022-12-13 07:10:06 +01:00
<?php
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface extends Throwable
{
}