forked from clousale/amazon-sp-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApiException.php
98 lines (87 loc) · 2.82 KB
/
ApiException.php
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
* ApiException.
*
* @author Stefan Neuhaus / ClouSale
*/
/**
* Selling Partner API for Solicitations.
*
* With the Solicitations API you can build applications that send non-critical solicitations to buyers. You can get a list of solicitation types that are available for an order that you specify, then call an operation that sends a solicitation to the buyer for that order. Buyers cannot respond to solicitations sent by this API, and these solicitations do not appear in the Messaging section of Seller Central or in the recipient's Message Center. The Solicitations API returns responses that are formed according to the <a href=https://tools.ietf.org/html/draft-kelly-json-hal-08>JSON Hypertext Application Language</a> (HAL) standard.
*
* OpenAPI spec version: v1
*/
namespace SellerLegend\AmazonSellingPartnerAPI;
use Exception;
/**
* ApiException Class Doc Comment.
*
* @author Stefan Neuhaus / ClouSale
*/
class ApiException extends Exception {
/**
* The HTTP body of the server response either as Json or string.
*
* @var mixed
*/
protected $responseBody;
/**
* The HTTP header of the server response.
*
* @var string[]|null
*/
protected $responseHeaders;
/**
* The deserialized response object.
*
* @var;
*/
protected $responseObject;
/**
* Constructor.
*
* @param string $message Error message
* @param int $code HTTP status code
* @param string[]|null $responseHeaders HTTP response header
* @param mixed $responseBody HTTP decoded body of the server response either as \stdClass or string
*/
public function __construct($message = '', $code = 0, $responseHeaders = [], $responseBody = null) {
parent::__construct($message, $code);
$this->responseHeaders = $responseHeaders;
$this->responseBody = $responseBody;
}
/**
* Gets the HTTP response header.
*
* @return string[]|null HTTP response header
*/
public function getResponseHeaders() {
return $this->responseHeaders;
}
/**
* Gets the HTTP body of the server response either as Json or string.
*
* @return mixed HTTP body of the server response either as \stdClass or string
*/
public function getResponseBody() {
return $this->responseBody;
}
/**
* Sets the deseralized response object (during deserialization).
*
* @param mixed $obj Deserialized response object
*
* @return void
*/
public function setResponseObject($obj) {
$this->responseObject = $obj;
}
/**
* Gets the deseralized response object (during deserialization).
*
* @return mixed the deserialized response object
*/
public function getResponseObject() {
return $this->responseObject;
}
}