15 lines
366 B
Rust
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,
|
|
},
|
|
}
|