/home/desid573/public_html/magicride.ng/wp-includes/Requests/Exception/Transport
Edit: /home/desid573/public_html/magicride.ng/wp-includes/Requests/Exception/Transport/cURL.php (918B)
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;
}
}