()
| 91 | } |
| 92 | |
| 93 | func newInvalidSecretError() errctx.Error { |
| 94 | return InvalidSecretError{errctx.NewTextError( |
| 95 | "Invalid secret", |
| 96 | 1, |
| 97 | errctx.WithStatusCode(http.StatusForbidden), |
| 98 | errctx.WithPublicMessage("Forbidden"), |
| 99 | errctx.WithShouldReport(false), |
| 100 | )} |
| 101 | } |
no test coverage detected