eigen_nodeapi/
error.rs

1
2
3
4
5
6
7
8
use thiserror::Error;

#[derive(Debug, Error)]
pub enum NodeApiError {
    /// Service id not found
    #[error("Service with id {0} not found")]
    ServiceIdNotFound(String),
}