use crate::*;
#[derive(Debug)]
pub enum EuvError {
Io {
message: String,
error: io::Error,
},
IoPath {
message: String,
path: PathBuf,
error: io::Error,
},
Utf8 {
message: String,
error: std::string::FromUtf8Error,
},
Server(String),
Message(String),
Watch(notify::Error),
}