aboutsummaryrefslogtreecommitdiffstats
path: root/src/finder/error.rs
blob: 181da216a5944d6f85670aa4897a22dcde93ef53 (plain)
1
2
3
4
5
6
7
8
9
10
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,
}