NotFound returns a new user facing not found error.
(message string)
| 172 | |
| 173 | // NotFound returns a new user facing not found error. |
| 174 | func NotFound(message string) *Error { |
| 175 | return New(http.StatusNotFound, message) |
| 176 | } |
| 177 | |
| 178 | // NotFoundf returns a new user facing not found error. |
| 179 | func NotFoundf(format string, args ...any) *Error { |
no test coverage detected
searching dependent graphs…