module Gapic::CallOptions::ErrorCodes

def self.grpc_error_for http_error_code

Other tags:
    Private: -
def self.grpc_error_for http_error_code
  return 2 unless http_error_code
  # The http status codes mapped to their error classes.
  HTTP_GRPC_CODE_MAP[http_error_code] || 2 # UnknownError
end