summaryrefslogtreecommitdiffstats
path: root/src/project/error.rs
blob: 7047533df6f66caa9182e8bef17cb6bad118fb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    IO(#[from] std::io::Error),

    #[error(transparent)]
    Git(#[from] git2::Error),

    #[error(transparent)]
    SystemTime(#[from] std::time::SystemTimeError),
}