| 1 | <?php |
| 2 | /** |
| 3 | * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) |
| 4 | */ |
| 5 | |
| 6 | namespace Cybot\Dependencies\Interop\Container\Exception; |
| 7 | |
| 8 | use Cybot\Dependencies\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 | } |
| 16 |