Security update for permissions_by_term
[yaffs-website] / vendor / container-interop / container-interop / src / Interop / Container / Exception / NotFoundException.php
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 }