1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
7 type errorWithStatus struct {
12 func (err errorWithStatus) HTTPStatus() int {
16 func httpError(code int, err error) error {
17 return errorWithStatus{code: code, error: err}