Lines Matching refs:response
38 protected $response; variable in Facebook\\Exceptions\\FacebookResponseException
48 * @param FacebookResponse $response The response that threw the exception.
51 …public function __construct(FacebookResponse $response, FacebookSDKException $previousException = … argument
53 $this->response = $response;
54 $this->responseData = $response->getDecodedBody();
65 * @param FacebookResponse $response The response that threw the exception.
69 public static function create(FacebookResponse $response) argument
71 $data = $response->getDecodedBody();
89 … return new static($response, new FacebookAuthenticationException($message, $code));
97 … return new static($response, new FacebookResumableUploadException($message, $code));
106 return new static($response, new FacebookAuthenticationException($message, $code));
111 return new static($response, new FacebookServerException($message, $code));
119 return new static($response, new FacebookThrottleException($message, $code));
123 return new static($response, new FacebookClientException($message, $code));
128 return new static($response, new FacebookAuthorizationException($message, $code));
133 return new static($response, new FacebookAuthenticationException($message, $code));
137 return new static($response, new FacebookOtherException($message, $code));
164 return $this->response->getHttpStatusCode();
194 return $this->response->getBody();
214 return $this->response;