Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / league / container / src / Exception / NotFoundException.php
1 <?php
2
3 namespace League\Container\Exception;
4
5 use Interop\Container\Exception\NotFoundException as NotFoundExceptionInterface;
6 use InvalidArgumentException;
7
8 class NotFoundException extends InvalidArgumentException implements NotFoundExceptionInterface
9 {
10 }