ContainerExceptionInterface.php
2 years ago
ContainerInterface.php
2 years ago
NotFoundExceptionInterface.php
2 years ago
ContainerExceptionInterface.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by Scott Kingsley Clark on 21-February-2024 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | namespace Pods\Prefixed\Psr\Container; |
| 10 | |
| 11 | use Throwable; |
| 12 | |
| 13 | /** |
| 14 | * Base interface representing a generic exception in a container. |
| 15 | */ |
| 16 | interface ContainerExceptionInterface extends Throwable |
| 17 | { |
| 18 | } |
| 19 |