give
/
vendor
/
vendor-prefixed
/
fakerphp
/
faker
/
src
/
Faker
/
Container
/
NotInContainerException.php
Container.php
1 year ago
ContainerBuilder.php
1 year ago
ContainerException.php
1 year ago
ContainerInterface.php
1 year ago
NotInContainerException.php
1 year ago
NotInContainerException.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 07-August-2024 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | declare(strict_types=1); |
| 10 | |
| 11 | namespace Give\Vendors\Faker\Container; |
| 12 | |
| 13 | use Give\Vendors\Psr\Container\NotFoundExceptionInterface; |
| 14 | |
| 15 | /** |
| 16 | * @experimental This class is experimental and does not fall under our BC promise |
| 17 | */ |
| 18 | final class NotInContainerException extends \RuntimeException implements NotFoundExceptionInterface |
| 19 | { |
| 20 | } |
| 21 |