1 | <?php |
||
5 | class PrestashopWebServiceRequestException extends PrestashopWebServiceException |
||
6 | { |
||
7 | protected static $label = 'This call to PrestaShop Web Services failed and returned an HTTP status of %d. That means: %s.'; |
||
8 | |||
9 | protected $response; |
||
10 | |||
11 | public function __construct($message = null, $code = null, $response = null) |
||
17 | |||
18 | public function hasResponse() |
||
22 | |||
23 | public function getResponse() |
||
27 | } |
||
28 |