1 | <?php |
||
8 | class CouldNotSendNotification extends \Exception |
||
9 | { |
||
10 | /** |
||
11 | * @return static |
||
12 | */ |
||
13 | public static function invalidCredentials() |
||
17 | |||
18 | /** |
||
19 | * @return static |
||
20 | */ |
||
21 | public static function invalidReceiver() |
||
25 | |||
26 | /** |
||
27 | * @return static |
||
28 | */ |
||
29 | public static function missingFrom() |
||
33 | |||
34 | /** |
||
35 | * @return static |
||
36 | */ |
||
37 | public static function missingNotifyUrl() |
||
41 | |||
42 | /** |
||
43 | * @param $message |
||
44 | * @return static |
||
45 | */ |
||
46 | public static function invalidMessageObject($message) |
||
56 | } |
||
57 |