mirror of
https://github.com/Combodo/iTop.git
synced 2026-07-03 21:36:40 +02:00
13 lines
184 B
PHP
13 lines
184 B
PHP
<?php
|
|
|
|
namespace Psr\Container;
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* Base interface representing a generic exception in a container.
|
|
*/
|
|
interface ContainerExceptionInterface extends Throwable
|
|
{
|
|
}
|