1 | <?php |
||
5 | class InvalidPointerException extends \InvalidArgumentException |
||
6 | { |
||
7 | /** |
||
8 | * @param string $type |
||
9 | * @return static |
||
10 | */ |
||
11 | 2 | public static function invalidType($type) |
|
15 | |||
16 | /** |
||
17 | * @param string $character |
||
18 | * @return static |
||
19 | */ |
||
20 | 2 | public static function invalidFirstCharacter($character) |
|
24 | |||
25 | /** |
||
26 | * @param string $value |
||
27 | * @return static |
||
28 | */ |
||
29 | 2 | public static function nonexistentValue($value) |
|
33 | } |
||
34 |