#[derive(Debug, thiserror::Error)]
pub enum NetwatchError {
#[error("Device not found: {0}")]
DeviceNotFound(String),
#[error("Permission denied: {0}")]
PermissionDenied(String),
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
#[error("Parse error: {0}")]
Parse(String),
#[error("Configuration error: {0}")]
Config(String),
#[error("Platform error: {0}")]
Platform(String),
#[error("Security error: {0}")]
Security(String),
}
pub type Result<T> = std::result::Result<T, NetwatchError>;