blob: 57502307304be4fd8c44d7f5ed19f1f63ea73103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?php
namespace Elastica\Exception;
use Elastica\Request;
use Elastica\Response;
/**
* Response exception.
*
* @author Nicolas Ruflin <spam@ruflin.com>
*/
class ResponseException extends \RuntimeException implements ExceptionInterface
{
/**
* @var \Elastica\Request Request object
*/
protected $_request = null;
/**
* @var \Elastica\Response Response object
*/
protected $_response = null;
/**
* Construct Exception.
*
* @param \Elastica\Request $request
* @param \Elastica\Response $response
*/
public function __construct(Request $request, Response $response)
{
$this->_request = $request;
$this->_response = $response;
parent::__construct($response->getError());
}
/**
* Returns request object.
*
* @return \Elastica\Request Request object
*/
public function getRequest()
{
return $this->_request;
}
/**
* Returns response object.
*
* @return \Elastica\Response Response object
*/
public function getResponse()
{
return $this->_response;
}
/**
* Returns elasticsearch exception.
*
* @return ElasticsearchException
*/
public function getElasticsearchException()
{
$response = $this->getResponse();
$transfer = $response->getTransferInfo();
$code = array_key_exists('http_code', $transfer) ? $transfer['http_code'] : 0;
return new ElasticsearchException($code, $response->getError());
}
}
|