httpStatusCode = $httpStatusCode; $this->httpErrorMessage = $httpErrorMessage; $this->httpRespBody = $httpRespBody; } /** * Get the HTTP status code * * @return int */ public function getHttpStatusCode() { return $this->httpStatusCode; } /** * Get the HTTP error message * * @return string */ public function getHttpErrorMessage() { return $this->httpErrorMessage; } /** * Get the HTTP response body * * @return mixed */ public function getHttpRespBody() { return $this->httpRespBody; } }