summaryrefslogtreecommitdiffstats
path: root/src/finder/error.rs
blob: 6ea50171df552991dffe101b030361de752b9fe0 (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,
}