1 | <?php |
||
4 | class InvalidOptionsException extends AbstractException |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * Display if the TTL is incorrect |
||
9 | * |
||
10 | * @param string $value The value that is wrong. |
||
11 | * @return static |
||
12 | */ |
||
13 | public static function invalidTimeToLive($value) |
||
17 | |||
18 | /** |
||
19 | * Display if the priority is incorrect. |
||
20 | * |
||
21 | * @return static |
||
22 | */ |
||
23 | public static function invalidPriority() |
||
27 | } |
||
28 |