| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Client\Exception; |
| 4 | |
| 5 | /** |
| 6 | * Thrown when the request cannot be completed because of network issues. |
| 7 | * |
| 8 | * There is no response object as this exception is thrown when no response has been received. |
| 9 | * |
| 10 | * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> |
| 11 | */ |
| 12 | class NetworkException extends RequestException |
| 13 | { |
| 14 | } |
| 15 |