Files
nym/nym-node/src/error.rs
T
Jędrzej Stuczyński 723e729f3b initial router
2023-10-10 17:08:03 +01:00

15 lines
366 B
Rust

// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use std::net::SocketAddr;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum NymNodeError {
#[error("failed to bind the HTTP API to {bind_address}: {source}")]
HttpBindFailure {
bind_address: SocketAddr,
source: hyper::Error,
},
}