1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
    #[error(transparent)]
    Io(#[from] std::io::Error),

    #[error(transparent)]
    TryInitError(#[from] tracing_subscriber::util::TryInitError),

    #[error(transparent)]
    Tonic(#[from] tonic::transport::Error),

    #[error(transparent)]
    RelativizePathError(#[from] std::path::StripPrefixError),

    #[error("No free port found")]
    NoFreePorts,
}