1 | <?php |
||
5 | final class InvalidPointerException extends \InvalidArgumentException |
||
6 | { |
||
7 | /** |
||
8 | * @param string $type |
||
9 | * |
||
10 | * @return static |
||
11 | */ |
||
12 | 2 | public static function invalidType($type) |
|
16 | |||
17 | /** |
||
18 | * @param string $value |
||
19 | * @param string $pointer |
||
20 | * |
||
21 | * @return static |
||
22 | */ |
||
23 | 6 | public static function nonexistentValue($value, $pointer) |
|
31 | |||
32 | /** |
||
33 | * @param string $target |
||
34 | * |
||
35 | * @return static |
||
36 | */ |
||
37 | 2 | public static function invalidTarget($target) |
|
41 | } |
||
42 |