| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class PropertyRangeSetNotFoundException extends OutOfRangeException implements ExceptionInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | private $propertyName; |
||
| 14 | |||
| 15 | public function __construct(string $propertyName, Throwable $previous = null) |
||
| 16 | { |
||
| 17 | $this->propertyName = $propertyName; |
||
| 18 | parent::__construct("Range set not found for Unicode property '{$this->propertyName}'", 0, $previous); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getPropertyName(): string |
||
| 24 | } |
||
| 25 | } |
||
| 26 |