CouldNotConnectToHost.php 524 B

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