diff options
Diffstat (limited to 'vendor/psr/container/src/NotFoundExceptionInterface.php')
-rw-r--r-- | vendor/psr/container/src/NotFoundExceptionInterface.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/psr/container/src/NotFoundExceptionInterface.php b/vendor/psr/container/src/NotFoundExceptionInterface.php new file mode 100644 index 00000000..6566704e --- /dev/null +++ b/vendor/psr/container/src/NotFoundExceptionInterface.php @@ -0,0 +1,13 @@ +<?php +/** + * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) + */ + +namespace Psr\Container; + +/** + * No entry was found in the container. + */ +interface NotFoundExceptionInterface extends ContainerExceptionInterface +{ +} |