NotAssignedf returns an error which satisfies Is(err, NotAssigned) and the Locationer interface.
(format string, args ...interface{})
| 331 | // NotAssignedf returns an error which satisfies Is(err, NotAssigned) and the |
| 332 | // Locationer interface. |
| 333 | func NotAssignedf(format string, args ...interface{}) error { |
| 334 | return newLocationError( |
| 335 | makeWrappedConstError(NotAssigned, format, args...), |
| 336 | 1, |
| 337 | ) |
| 338 | } |
| 339 | |
| 340 | // NewNotAssigned returns an error which wraps err and satisfies |
| 341 | // Is(err, NotAssigned) and the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…