Errorf returns an error representing c and a formatted msg. If c is OK, returns nil.
(c codes.Code, format string, a ...interface{})
| 24 | |
| 25 | // Errorf returns an error representing c and a formatted msg. If c is OK, returns nil. |
| 26 | func Errorf(c codes.Code, format string, a ...interface{}) error { |
| 27 | return nil |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected