Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function __construct(ConstraintInterface $constraint, \Exception $previous = null) |
||
17 | { |
||
18 | $message = 'The '.$constraint->getIsoCodesClass().' class does not exist.' |
||
19 | .' This class is available since version '.$constraint->getIsoCodesVersion().' of IsoCodes library.' |
||
20 | .' Please consider upgrading.'; |
||
21 | |||
22 | parent::__construct($message, 0, $previous); |
||
23 | } |
||
24 | } |
||
25 |