Deprecated: IsAlreadyExists reports whether the err is a AlreadyExists error. Use Is(err, AlreadyExists).
(err error)
| 253 | // Deprecated: IsAlreadyExists reports whether the err is a AlreadyExists |
| 254 | // error. Use Is(err, AlreadyExists). |
| 255 | func IsAlreadyExists(err error) bool { |
| 256 | return Is(err, AlreadyExists) |
| 257 | } |
| 258 | |
| 259 | // NotSupportedf returns an error which satisfies Is(err, NotSupported) and the |
| 260 | // Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…