(s *status.Status)
| 24 | } |
| 25 | |
| 26 | func newAPIError(s *status.Status) *apiError { |
| 27 | return &apiError{status: s} |
| 28 | } |
| 29 | |
| 30 | func NewInvalidArgumentApiError(err error, details ...protoadapt.MessageV1) *apiError { |
| 31 | return newAPIError(convertToStatus(codes.InvalidArgument, err, details...)) |
no outgoing calls
no test coverage detected