mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-08-17 21:58:36 -04:00
14 lines
248 B
PHP
14 lines
248 B
PHP
<?php
|
|
/**
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
|
|
*/
|
|
|
|
namespace Psr\Container;
|
|
|
|
/**
|
|
* Base interface representing a generic exception in a container.
|
|
*/
|
|
interface ContainerExceptionInterface
|
|
{
|
|
}
|