(format string, args ...any)
| 51 | } |
| 52 | |
| 53 | func Unauthorized(format string, args ...any) *Error { |
| 54 | return newError(http.StatusUnauthorized, format, args...) |
| 55 | } |
| 56 | |
| 57 | func Forbidden(format string, args ...any) *Error { |
| 58 | return newError(http.StatusForbidden, format, args...) |
no test coverage detected