MCPcopy Create free account
hub / github.com/dropbox/dbxcli / invalidArgumentsErrorfWithDetails

Function invalidArgumentsErrorfWithDetails

cmd/output.go:127–129  ·  view source on GitHub ↗
(format string, details map[string]any, args ...any)

Source from the content-addressed store, hash-verified

125}
126
127func invalidArgumentsErrorfWithDetails(format string, details map[string]any, args ...any) error {
128 return newCodedError(jsonErrorCodeInvalidArguments, fmt.Errorf(format, args...), details)
129}
130
131func pathConflictErrorWithPath(path string, format string, args ...any) error {
132 return newCodedError(jsonErrorCodePathConflict, fmt.Errorf(format, args...), pathErrorDetails(path))

Callers 15

putFunction · 0.85
putStdinFunction · 0.85
normalizePutIfExistsFunction · 0.85
checkPutStdinDestinationFunction · 0.85
parseOutputFormatFunction · 0.85
validateListOptionsFunction · 0.85
shareLinkExpiresFlagFunction · 0.85
shareLinkAccessFlagFunction · 0.85

Calls 1

newCodedErrorFunction · 0.85