/home/techb158/immovalet.com/vendor/rmccue/requests/library/Requests/Exception/Transport
Edit: /home/techb158/immovalet.com/vendor/rmccue/requests/library/Requests/Exception/Transport/cURL.php (919B)
type = $type;
}
if ($code !== null) {
$this->code = $code;
}
if ($message !== null) {
$this->reason = $message;
}
$message = sprintf('%d %s', $this->code, $this->reason);
parent::__construct($message, $this->type, $data, $this->code);
}
/**
* Get the error message
*/
public function getReason() {
return $this->reason;
}
}