(format string, args ...any)
| 39 | } |
| 40 | |
| 41 | func MethodNotAllowed(format string, args ...any) *Error { |
| 42 | return newError(http.StatusMethodNotAllowed, format, args...) |
| 43 | } |
| 44 | |
| 45 | func Internal(format string, args ...any) *Error { |
| 46 | return newError(http.StatusInternalServerError, format, args...) |
no test coverage detected