NotValidf returns an error which satisfies Is(err, NotValid) and the Locationer interface.
(format string, args ...interface{})
| 283 | // NotValidf returns an error which satisfies Is(err, NotValid) and the |
| 284 | // Locationer interface. |
| 285 | func NotValidf(format string, args ...interface{}) error { |
| 286 | return newLocationError( |
| 287 | makeWrappedConstError(NotValid, format, args...), |
| 288 | 1, |
| 289 | ) |
| 290 | } |
| 291 | |
| 292 | // NewNotValid returns an error which wraps err and satisfies Is(err, NotValid) |
| 293 | // and the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…