Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / league / container / src / Exception / NotFoundException.php
diff --git a/vendor/league/container/src/Exception/NotFoundException.php b/vendor/league/container/src/Exception/NotFoundException.php
new file mode 100644 (file)
index 0000000..a6f2350
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+namespace League\Container\Exception;
+
+use Interop\Container\Exception\NotFoundException as NotFoundExceptionInterface;
+use InvalidArgumentException;
+
+class NotFoundException extends InvalidArgumentException implements NotFoundExceptionInterface
+{
+}