/home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/Google/IO
NameSizeModeActions
Abstract.php109230644editdlrm
cacerts.pem1348620644editdlrm
Curl.php54720644editdlrm
Exception.php18390644editdlrm
Stream.php80230644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/Google/IO/Exception.php (1839B)
= 0) { parent::__construct($message, $code, $previous); } else { parent::__construct($message, $code); } if (is_array($retryMap)) { $this->retryMap = $retryMap; } } /** * 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]; } return 0; } }