1<?php
2
3namespace App\Container\Exception;
4
5/**
6 * No entry was found in the container.
7 */
8interface NotFoundExceptionInterface extends ContainerExceptionInterface
9{
10}
11