| 1 | <?php |
||
| 8 | class CouldNotSendNotification extends Exception |
||
| 9 | { |
||
| 10 | const NO_RECIPIENT = 'Could not find recipient for notification'; |
||
| 11 | const CONNECTION_FAILED = "Could not connect to sipgate: %s: %s"; |
||
| 12 | |||
| 13 | public static function noRecipient() |
||
| 17 | |||
| 18 | public static function connectionFailed(GuzzleException $exception) |
||
| 24 | } |
||
| 25 |