NotSupportedf returns an error which satisfies Is(err, NotSupported) and the Locationer interface.
(format string, args ...interface{})
| 259 | // NotSupportedf returns an error which satisfies Is(err, NotSupported) and the |
| 260 | // Locationer interface. |
| 261 | func NotSupportedf(format string, args ...interface{}) error { |
| 262 | return newLocationError( |
| 263 | makeWrappedConstError(NotSupported, format, args...), |
| 264 | 1, |
| 265 | ) |
| 266 | } |
| 267 | |
| 268 | // NewNotSupported returns an error which satisfies Is(err, NotSupported) and |
| 269 | // the Locationer interface. |
nothing calls this directly
no test coverage detected
searching dependent graphs…