Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class DuplicateConstraintException extends Exception |
||
10 | { |
||
11 | /** |
||
12 | * @var Constraint |
||
13 | */ |
||
14 | protected $constraint; |
||
15 | |||
16 | /** |
||
17 | * DuplicateConstraintException constructor. |
||
18 | * |
||
19 | * @param Constraint $constraint |
||
20 | * @param string $message |
||
21 | * @param int $code |
||
22 | * @param Throwable|null $previous |
||
23 | */ |
||
24 | public function __construct(Constraint $constraint, string $message = "", int $code = 0, Throwable $previous = null) |
||
30 | } |