Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ContainerException.php « Exception « Container « Interop « src « container-interop « container-interop « vendor « server - github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3964061a2478a6cb484e7e3a5d396238070bb184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
 */

namespace Interop\Container\Exception;

use Psr\Container\ContainerExceptionInterface as PsrContainerException;

/**
 * Base interface representing a generic exception in a container.
 */
interface ContainerException extends PsrContainerException
{
}