ameliabooking
/
vendor
/
php-http
/
client-common
/
src
/
Exception
/
HttpClientNotFoundException.php
BatchException.php
3 years ago
CircularRedirectionException.php
3 years ago
ClientErrorException.php
3 years ago
HttpClientNotFoundException.php
3 years ago
LoopException.php
3 years ago
MultipleRedirectionException.php
3 years ago
ServerErrorException.php
3 years ago
HttpClientNotFoundException.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Client\Common\Exception; |
| 4 | |
| 5 | use AmeliaHttp\Client\Exception\TransferException; |
| 6 | |
| 7 | /** |
| 8 | * Thrown when a http client cannot be chosen in a pool. |
| 9 | * |
| 10 | * @author Joel Wurtz <joel.wurtz@gmail.com> |
| 11 | */ |
| 12 | class HttpClientNotFoundException extends TransferException |
| 13 | { |
| 14 | } |
| 15 |