mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-02-16 05:33:48 +00: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
|
|
{
|
|
}
|