| 1 | <?php |
||
| 13 | class ResponseException extends \RuntimeException |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param string $host |
||
| 17 | * @param \Exception $previous |
||
| 18 | * |
||
| 19 | * @return ResponseException |
||
| 20 | */ |
||
| 21 | 5 | public static function failed($host, \Exception $previous) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $host |
||
| 28 | * |
||
| 29 | * @return ResponseException |
||
| 30 | */ |
||
| 31 | 5 | public static function invalidResponse($host) |
|
| 35 | } |
||
| 36 |