use std::fmt;
#[allow(clippy::module_name_repetitions)]
pub enum BranchError {
NoMatch,
}
impl fmt::Display for BranchError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::NoMatch => write!(f, "unable to match an alternative branch"),
}
}
}