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