Files
Kanboard-Prod/vendor/psr/container/src/ContainerExceptionInterface.php
Frédéric Guillot f5bb55bdb8 PHP 8 Compatibility
2022-02-05 11:49:03 -08:00

13 lines
184 B
PHP

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