(format string, args ...any)
| 63 | } |
| 64 | |
| 65 | func Gone(format string, args ...any) *Error { |
| 66 | return newError(http.StatusGone, format, args...) |
| 67 | } |
| 68 | |
| 69 | func newError(statusCode int, format string, args ...any) *Error { |
| 70 | return &Error{ |
no test coverage detected