Deprecated: IsNotFound reports whether err is a NotFound error. Use Is(err, NotFound).
(err error)
| 157 | // Deprecated: IsNotFound reports whether err is a NotFound error. Use |
| 158 | // Is(err, NotFound). |
| 159 | func IsNotFound(err error) bool { |
| 160 | return Is(err, NotFound) |
| 161 | } |
| 162 | |
| 163 | // UserNotFoundf returns an error which satisfies Is(err, UserNotFound) and the |
| 164 | // Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…