| Total Complexity | 2 | 
| Total Lines | 10 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 7 | final class PropertyNotSupportNestedValuesException extends ValueNotFoundException  | 
            ||
| 8 | { | 
            ||
| 9 | 3 | public function __construct(string $property, private mixed $value)  | 
            |
| 10 |     { | 
            ||
| 11 | 3 |         parent::__construct('Property "' . $property . '" is not a nested attribute.'); | 
            |
| 12 | }  | 
            ||
| 13 | |||
| 14 | 3 | public function getValue(): mixed  | 
            |
| 17 | }  | 
            ||
| 18 | }  | 
            ||
| 19 |