Deprecated: IsUserNotFound reports whether err is a UserNotFound error. Use Is(err, UserNotFound).
(err error)
| 181 | // Deprecated: IsUserNotFound reports whether err is a UserNotFound error. Use |
| 182 | // Is(err, UserNotFound). |
| 183 | func IsUserNotFound(err error) bool { |
| 184 | return Is(err, UserNotFound) |
| 185 | } |
| 186 | |
| 187 | // Unauthorizedf returns an error that satisfies Is(err, Unauthorized) and |
| 188 | // the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…