Deprecated: IsNotAssigned reports whether err is a NotAssigned error. Use Is(err, NotAssigned)
(err error)
| 349 | // Deprecated: IsNotAssigned reports whether err is a NotAssigned error. |
| 350 | // Use Is(err, NotAssigned) |
| 351 | func IsNotAssigned(err error) bool { |
| 352 | return Is(err, NotAssigned) |
| 353 | } |
| 354 | |
| 355 | // BadRequestf returns an error which satisfies Is(err, BadRequest) and the |
| 356 | // Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…