17 lines
303 B
PHP
Executable File
17 lines
303 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Http\Client\Common\Exception;
|
|
|
|
use Http\Client\Exception\TransferException;
|
|
|
|
/**
|
|
* Thrown when a http client cannot be chosen in a pool.
|
|
*
|
|
* @author Joel Wurtz <joel.wurtz@gmail.com>
|
|
*/
|
|
final class HttpClientNotFoundException extends TransferException
|
|
{
|
|
}
|