1// SPDX-FileCopyrightText: Copyright The Lima Authors 2// SPDX-License-Identifier: Apache-2.0 3 4package httputil 5 6// ErrorJSON is returned with "application/json" content type and non-2XX status code. 7type ErrorJSON struct { 8 Message string `json:"message"` 9} 10 11