Files
medicalalert-web-reloaded/wp/wp-content/plugins/imagify/classes/Dependencies/Psr/Container/ContainerExceptionInterface.php
2024-03-19 15:33:31 +00:00

13 lines
205 B
PHP

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