1use thiserror::Error;
23#[derive(Debug, Error)]
4pub enum NodeApiError {
5/// Service id not found
6#[error("Service with id {0} not found")]
7ServiceIdNotFound(String),
89/// Internal server error
10#[error("Internal server error")]
11InternalServerError,
12}