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

NotFoundException.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: 031b3ab4e3496d5d2db4530d67b620ba13154ece (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\NotFoundExceptionInterface as PsrNotFoundException;

/**
 * No entry was found in the container.
 */
interface NotFoundException extends ContainerException, PsrNotFoundException
{
}