1<?php 2 3declare(strict_types = 1); 4 5namespace Elasticsearch\Common\Exceptions\Curl; 6 7use Elasticsearch\Common\Exceptions\ElasticsearchException; 8use Elasticsearch\Common\Exceptions\TransportException; 9 10/** 11 * Class CouldNotConnectToHost 12 * 13 * @category Elasticsearch 14 * @package Elasticsearch\Common\Exceptions\Curl 15 * @author Zachary Tong <zach@elastic.co> 16 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 17 * @link http://elastic.co 18 */ 19class CouldNotConnectToHost extends TransportException implements ElasticsearchException 20{ 21} 22