AwsInspector\Helper\Curl::getCurlError PHP Method

getCurlError() protected method

protected getCurlError ( string $exitCode ) : mixed | string
$exitCode string
return mixed | string
    protected function getCurlError($exitCode)
    {
        $map = $this->getCurleMap();
        $errorMessage = isset($map[$exitCode]) ? $map[$exitCode] : 'undefined';
        $errorMessage .= ' (Code: ' . $exitCode . ')';
        return $errorMessage;
    }