MCPcopy Index your code
hub / github.com/dropbox/godropbox / Wrapf

Function Wrapf

errors/errors.go:147–149  ·  view source on GitHub ↗

Same as Wrap, but with fmt.Printf-style parameters.

(err error, format string, args ...interface{})

Source from the content-addressed store, hash-verified

145
146// Same as Wrap, but with fmt.Printf-style parameters.
147func Wrapf(err error, format string, args ...interface{}) DropboxError {
148 return newBaseError(err, fmt.Sprintf(format, args...))
149}
150
151// Internal helper function to create new baseError objects,
152// note that if there is more than one level of redirection to call this function,

Callers 3

connectionErrorMethod · 0.92
parseStatusMethod · 0.92
ReadMethod · 0.92

Calls 1

newBaseErrorFunction · 0.85

Tested by

no test coverage detected