Total Complexity | 1 |
Total Lines | 7 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class ActionContainerException extends RuntimeException implements ContainerExceptionInterface |
||
14 | { |
||
15 | public const MESSAGE = 'Error occurred instantiating "%s" class, see previous exception for more details.'; |
||
16 | |||
17 | 1 | public static function withIdAndPreviousException(string $id, Throwable $exception): self |
|
22 |