(param string)
| 99 | }) |
| 100 | } |
| 101 | func ErrorQueryParamRequired(param string) error { |
| 102 | return errors.WithStack(&errors.Error{ |
| 103 | Kind: ErrQueryParamRequired, |
| 104 | Message: fmt.Sprintf("query param required: %s", param), |
| 105 | }) |
| 106 | } |
| 107 | |
| 108 | func ErrorPathParamRequired(param string) error { |
| 109 | return errors.WithStack(&errors.Error{ |
no test coverage detected