/home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/Google/Service
NameSizeModeActions
CloudMonitoring.php345490644editdlrm
Cloudsearch.php13840644editdlrm
Datastore.php369480644editdlrm
Deploymentmanager.php330220644editdlrm
Dns.php257620644editdlrm
Drive.php1520930644editdlrm
Exception.php27640644editdlrm
Logging.php407800644editdlrm
Manager.php456930644editdlrm
Oauth2.php110350644editdlrm
Resource.php84680644editdlrm
Storage.php1055270644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/Google/Service/Exception.php (2764B)
= 0) { parent::__construct($message, $code, $previous); } else { parent::__construct($message, $code); } $this->errors = $errors; if (is_array($retryMap)) { $this->retryMap = $retryMap; } } /** * An example of the possible errors returned. * * { * "domain": "global", * "reason": "authError", * "message": "Invalid Credentials", * "locationType": "header", * "location": "Authorization", * } * * @return [{string, string}] List of errors return in an HTTP response or []. */ public function getErrors() { return $this->errors; } /** * Gets the number of times the associated task can be retried. * * NOTE: -1 is returned if the task can be retried indefinitely * * @return integer */ public function allowedRetries() { if (isset($this->retryMap[$this->code])) { return $this->retryMap[$this->code]; } $errors = $this->getErrors(); if (!empty($errors) && isset($errors[0]['reason']) && isset($this->retryMap[$errors[0]['reason']])) { return $this->retryMap[$errors[0]['reason']]; } return 0; } }