1 | <?php |
||
7 | final class DeserializerLogicException extends \LogicException |
||
8 | { |
||
9 | /** |
||
10 | * @param string $contentType |
||
11 | * |
||
12 | * @return self |
||
13 | */ |
||
14 | 1 | public static function createMissingContentType(string $contentType): self |
|
18 | |||
19 | /** |
||
20 | * @param string $class |
||
21 | * |
||
22 | * @return self |
||
23 | */ |
||
24 | 1 | public static function createMissingMapping(string $class): self |
|
28 | |||
29 | /** |
||
30 | * @param string $class |
||
31 | * @param array $methods |
||
32 | * |
||
33 | * @return self |
||
34 | */ |
||
35 | 1 | public static function createMissingMethod(string $class, array $methods): self |
|
41 | |||
42 | /** |
||
43 | * @param string $class |
||
44 | * @param string $property |
||
45 | * |
||
46 | * @return self |
||
47 | */ |
||
48 | 1 | public static function createMissingProperty(string $class, string $property): self |
|
52 | } |
||
53 |