aboutsummaryrefslogtreecommitdiffstats
path: root/src/paths/error.rs
blob: 08fdc8929a034959368ba165affaee734b9d5e89 (plain)
1
2
3
4
5
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("Ignore error: {0}")]
    Ignore(#[from] ignore::Error),
}