Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

37 строки
927 B

  1. <?php
  2. namespace JPush\Exceptions;
  3. class APIRequestException extends JPushException {
  4. private $http_code;
  5. private $headers;
  6. private static $expected_keys = array('code', 'message');
  7. function __construct($response){
  8. $this->http_code = $response['http_code'];
  9. $this->headers = $response['headers'];
  10. $body = json_decode($response['body'], true);
  11. if (key_exists('error', $body)) {
  12. $this->code = $body['error']['code'];
  13. $this->message = $body['error']['message'];
  14. } else {
  15. $this->code = $body['code'];
  16. $this->message = $body['message'];
  17. }
  18. }
  19. public function __toString() {
  20. return "\n" . __CLASS__ . " -- [{$this->code}]: {$this->message} \n";
  21. }
  22. public function getHttpCode() {
  23. return $this->http_code;
  24. }
  25. public function getHeaders() {
  26. return $this->headers;
  27. }
  28. }