Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
14 | public function __construct(string $fieldName, Type $type, ?\Throwable $previous = null) |
||
15 | { |
||
16 | $message = 'Type ' |
||
17 | . get_class($type) |
||
18 | . ' found on field "' |
||
19 | . $fieldName |
||
20 | . '" is not implemented in apie/composite-value-objects'; |
||
21 | parent::__construct( |
||
22 | 500, |
||
23 | $message, |
||
24 | $previous |
||
25 | ); |
||
28 |