habit-statistics/vendor/psr/container/src/ContainerExceptionInterface.php

13 lines
184 B
PHP
Raw Normal View History

2023-05-21 12:11:59 +02:00
<?php
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface extends Throwable
{
}