Security update for permissions_by_term
[yaffs-website] / vendor / container-interop / container-interop / src / Interop / Container / Exception / ContainerException.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\ContainerExceptionInterface as PsrContainerException;
9
10 /**
11  * Base interface representing a generic exception in a container.
12  */
13 interface ContainerException extends PsrContainerException
14 {
15 }