diff options
Diffstat (limited to 'vendor/psr/container/src/NotFoundExceptionInterface.php')
-rw-r--r-- | vendor/psr/container/src/NotFoundExceptionInterface.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/psr/container/src/NotFoundExceptionInterface.php b/vendor/psr/container/src/NotFoundExceptionInterface.php new file mode 100644 index 0000000..650bf46 --- /dev/null +++ b/vendor/psr/container/src/NotFoundExceptionInterface.php | |||
@@ -0,0 +1,10 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Psr\Container; | ||
4 | |||
5 | /** | ||
6 | * No entry was found in the container. | ||
7 | */ | ||
8 | interface NotFoundExceptionInterface extends ContainerExceptionInterface | ||
9 | { | ||
10 | } | ||