Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function __construct( |
||
31 | EntityId $fromId, |
||
32 | PropertyId $propertyId, |
||
33 | array $toIds, |
||
34 | $maxDepth, |
||
35 | $message = null, |
||
36 | Exception $previous = null |
||
37 | ) { |
||
38 | $this->maxDepth = $maxDepth; |
||
39 | $message = $message ?: 'Referenced entity id lookup failed: Maximum depth of ' . $maxDepth . ' exhausted.'; |
||
40 | |||
41 | parent::__construct( $fromId, $propertyId, $toIds, $message, $previous ); |
||
42 | } |
||
43 | |||
52 |