1 | <?php |
||
5 | class CouldNotSendNotification extends \Exception |
||
6 | { |
||
7 | /** |
||
8 | * @param $response |
||
9 | * @return CouldNotSendNotification |
||
10 | */ |
||
11 | 1 | public static function serviceRespondsNotSuccessful($response) |
|
17 | |||
18 | /** |
||
19 | * @param $response |
||
20 | * @return CouldNotSendNotification |
||
21 | */ |
||
22 | public static function userWasNotFound($response) |
||
28 | |||
29 | /** |
||
30 | * @param $exceededLength |
||
31 | * @return CouldNotSendNotification |
||
32 | */ |
||
33 | 2 | public static function statusUpdateTooLong($exceededLength) |
|
37 | } |
||
38 |