grpc_error_string
- Returns the error message for the error code.
char *grpc_error_string(grpc_error_t error_code)
grpc_error_t error_code
The grpc_error_string() function returns the error message that corresponds to the error code.
This function is MT-safe.
The error message that corresponds to the specified error code is returned. If a nonexistent error code is specified, "GRPC_UNKNOWN_ERROR_CODE" is returned.
None