aboutsummaryrefslogtreecommitdiffstats
path: root/src/finder/error.rs
blob: 46d39c43ca89e4f7fd9aa18110f185e8dfc9f1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
pub type Result<T> = std::result::Result<T, Error>;

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("IO error: {0:?}")]
    IO(#[from] std::io::Error),

    #[error("Stdin error: Failed to get finder's stdin")]
    Stdin,
}