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