UserNotFoundf returns an error which satisfies Is(err, UserNotFound) and the Locationer interface.
(format string, args ...interface{})
| 163 | // UserNotFoundf returns an error which satisfies Is(err, UserNotFound) and the |
| 164 | // Locationer interface. |
| 165 | func UserNotFoundf(format string, args ...interface{}) error { |
| 166 | return newLocationError( |
| 167 | makeWrappedConstError(UserNotFound, format, args...), |
| 168 | 1, |
| 169 | ) |
| 170 | } |
| 171 | |
| 172 | // NewUserNotFound returns an error which wraps err and satisfies |
| 173 | // Is(err, UserNotFound) and the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…