use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
#[error("audio device not found: {0}")]
DeviceNotFound(String),
#[error("no compatible output config found for AVB device")]
UnsupportedOutputConfig,
#[error("failed to start AVB output stream")]
StreamStartFailed,
}