Amazon.Runtime.AmazonServiceException.BuildGenericErrorMessage C# (CSharp) Method

BuildGenericErrorMessage() static private method

static private BuildGenericErrorMessage ( string errorCode, HttpStatusCode statusCode ) : string
errorCode string
statusCode HttpStatusCode
return string
        static string BuildGenericErrorMessage(string errorCode, HttpStatusCode statusCode)
        {
            return string.Format(CultureInfo.InvariantCulture,  
                "Error making request with Error Code {0} and Http Status Code {1}. No further error information was returned by the service.", errorCode, statusCode);
        }