<?php curl_error(CurlHandle $handle): string
<?php curl_exec($this->curlHandleNext); if (curl_errno($this->curlHandleNext) > 0) { $message = curl_error($this->curlHandleNext); $this->closeCurlHandleNext(); throw new Exception('Failed to fetch next Lambda invocation: ' . $message); }
<?php ]); curl_exec($this->curlHandleResult); if (curl_errno($this->curlHandleResult) > 0) { $errorMessage = curl_error($this->curlHandleResult); $this->closeCurlHandleResult(); throw new Exception('Error while calling the Lambda runtime API: ' . $errorMessage); }