(path string, format string, args ...any)
| 129 | } |
| 130 | |
| 131 | func pathConflictErrorWithPath(path string, format string, args ...any) error { |
| 132 | return newCodedError(jsonErrorCodePathConflict, fmt.Errorf(format, args...), pathErrorDetails(path)) |
| 133 | } |
| 134 | |
| 135 | func authRequiredErrorf(format string, args ...any) error { |
| 136 | return newCodedError(jsonErrorCodeAuthRequired, fmt.Errorf(format, args...)) |