Deprecated: IsNotValid reports whether err is a NotValid error. Use Is(err, NotValid).
(err error)
| 301 | // Deprecated: IsNotValid reports whether err is a NotValid error. Use |
| 302 | // Is(err, NotValid). |
| 303 | func IsNotValid(err error) bool { |
| 304 | return Is(err, NotValid) |
| 305 | } |
| 306 | |
| 307 | // NotProvisionedf returns an error which satisfies Is(err, NotProvisioned) and |
| 308 | // the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…