Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class ChainBuilderValidationException extends \Exception |
||
18 | { |
||
19 | /** |
||
20 | * ChainBuilderValidationException constructor. |
||
21 | * |
||
22 | * @param string $operation |
||
23 | * @param ConstraintViolation[] $violations |
||
24 | * @param int $code |
||
25 | * @param Throwable|null $previous |
||
26 | */ |
||
27 | public function __construct(string $operation, array $violations, int $code = 0, Throwable $previous = null) |
||
36 | } |
||
37 | } |