]> git.mxchange.org Git - friendica-addons.git/blob
031b3ab4e3496d5d2db4530d67b620ba13154ece
[friendica-addons.git] /
1 <?php
2 /**
3  * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
4  */
5
6 namespace Interop\Container\Exception;
7
8 use Psr\Container\NotFoundExceptionInterface as PsrNotFoundException;
9
10 /**
11  * No entry was found in the container.
12  */
13 interface NotFoundException extends ContainerException, PsrNotFoundException
14 {
15 }