/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Exceptions
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Exceptions/RestException.php (1518B)
statusCode = $statusCode;
$this->moreInfo = $moreInfo;
$this->details = $details;
parent::__construct($message, $code);
}
/**
* Get the HTTP Status Code of the RestException
* @return int HTTP Status Code
*/
public function getStatusCode(): int {
return $this->statusCode;
}
/**
* Get more information of the RestException
* @return string More error information
*/
public function getMoreInfo(): string {
return $this->moreInfo;
}
/**
* Get the details of the RestException
* @return exception details
*/
public function getDetails(): array {
return $this->details;
}
}