Deprecated: IsNotImplemented reports whether err is a NotImplemented error. Use Is(err, NotImplemented).
(err error)
| 229 | // Deprecated: IsNotImplemented reports whether err is a NotImplemented error. |
| 230 | // Use Is(err, NotImplemented). |
| 231 | func IsNotImplemented(err error) bool { |
| 232 | return Is(err, NotImplemented) |
| 233 | } |
| 234 | |
| 235 | // AlreadyExistsf returns an error which satisfies Is(err, AlreadyExists) and |
| 236 | // the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…