(err error)
| 11 | ) |
| 12 | |
| 13 | func newSanitizeError(err error) error { |
| 14 | return SanitizeError{errctx.NewWrappedError( |
| 15 | err, |
| 16 | 1, |
| 17 | errctx.WithStatusCode(http.StatusUnprocessableEntity), |
| 18 | errctx.WithPublicMessage("Broken or unsupported SVG image"), |
| 19 | errctx.WithShouldReport(true), |
| 20 | )} |
| 21 | } |
no test coverage detected