Deprecated: IsNotSupported reports whether err is a NotSupported error. Use Is(err, NotSupported).
(err error)
| 277 | // Deprecated: IsNotSupported reports whether err is a NotSupported error. Use |
| 278 | // Is(err, NotSupported). |
| 279 | func IsNotSupported(err error) bool { |
| 280 | return Is(err, NotSupported) |
| 281 | } |
| 282 | |
| 283 | // NotValidf returns an error which satisfies Is(err, NotValid) and the |
| 284 | // Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…