Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __construct( PropertyId $propertyId, $message = null, Exception $previous = null ) { |
||
19 | $this->propertyId = $propertyId; |
||
20 | |||
21 | if ( $message === null ) { |
||
22 | $message = 'Could not find the types of DataValues used on property : ' . $propertyId; |
||
23 | } |
||
24 | |||
25 | parent::__construct( $message, 0, $previous ); |
||
26 | } |
||
27 | |||
36 |