| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class CodePointNameNotParsedException extends LogicException implements ExceptionInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $name; |
||
| 17 | |||
| 18 | public function __construct(string $name, Throwable $previous = null) |
||
| 19 | { |
||
| 20 | parent::__construct("Failed to parse code point name: {$name}", 0, $previous); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getName(): string |
||
| 26 | } |
||
| 27 | } |
||
| 28 |