Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class PropertyDataTypeLookupException extends RuntimeException { |
||
16 | |||
17 | /** |
||
18 | * @var PropertyId |
||
19 | */ |
||
20 | private $propertyId; |
||
21 | |||
22 | /** |
||
23 | * @param PropertyId $propertyId |
||
24 | * @param string|null $message |
||
25 | * @param Exception|null $previous |
||
26 | */ |
||
27 | public function __construct( PropertyId $propertyId, $message = null, ?Exception $previous = null ) { |
||
34 | ); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return PropertyId |
||
39 | */ |
||
40 | public function getPropertyId() { |
||
45 |