1 | <?php |
||
8 | class CharacterNotFoundException extends Exception |
||
9 | { |
||
10 | /** |
||
11 | * @var Codepoint |
||
12 | */ |
||
13 | protected $codepoint; |
||
14 | |||
15 | /** |
||
16 | * @return Codepoint |
||
17 | */ |
||
18 | public function getCodepoint() |
||
22 | |||
23 | /** |
||
24 | * @param Codepoint $codepoint |
||
25 | * @return self |
||
26 | */ |
||
27 | public static function withCodepoint(Codepoint $codepoint) |
||
34 | } |