| 12345678910111213141516171819 |
- <?php
- namespace Elasticsearch\Common\Exceptions\Curl;
- use Elasticsearch\Common\Exceptions\ElasticsearchException;
- use Elasticsearch\Common\Exceptions\TransportException;
- /**
- * Class CouldNotConnectToHost
- *
- * @category Elasticsearch
- * @package Elasticsearch\Common\Exceptions\Curl
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class CouldNotConnectToHost extends TransportException implements ElasticsearchException
- {
- }
|