Files
medicalalert-web-reloaded/wp/wp-content/plugins/imagify/classes/Dependencies/Psr/Container/ContainerExceptionInterface.php
2024-06-17 14:42:23 -04: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
{
}