peach-workspace/peach-monitor/src/error.rs

16 lines
195 B
Rust
Raw Permalink Normal View History

2021-08-06 17:58:40 +00:00
//! Basic error handling for network and nest.
use std::error;
pub type BoxError = Box<dyn error::Error>;
#[derive(Debug)]
pub enum NetworkError {
}
#[derive(Debug)]
pub enum NestError {
}