(err error)
| 23 | } |
| 24 | |
| 25 | func invalidParam(err error) error { |
| 26 | return invalidParameterErr{err} |
| 27 | } |
| 28 | |
| 29 | func invalidParamf(format string, args ...any) error { |
| 30 | return invalidParameterErr{fmt.Errorf(format, args...)} |
no outgoing calls
no test coverage detected
searching dependent graphs…