Deprecated: IsNotProvisioned reports whether err is a NotProvisioned error. Use Is(err, NotProvisioned).
(err error)
| 325 | // Deprecated: IsNotProvisioned reports whether err is a NotProvisioned error. |
| 326 | // Use Is(err, NotProvisioned). |
| 327 | func IsNotProvisioned(err error) bool { |
| 328 | return Is(err, NotProvisioned) |
| 329 | } |
| 330 | |
| 331 | // NotAssignedf returns an error which satisfies Is(err, NotAssigned) and the |
| 332 | // Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…