// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 use thiserror::Error; /// Implementation of the Completion Engines served by the HTTP service should /// map their custom errors to to this error type if they wish to return error /// codes besides 500. #[derive(Debug, Error)] #[error("HTTP Error {code}: {message}")] pub struct HttpError { pub code: u16, pub message: String, }