summaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: bfcf17582aa7ef5371de0c70f07c1d46549b6e8c (plain)
1
2
3
4
5
6
7
#[derive(Debug, thiserror::Error)]
pub enum IOBError {
    #[error("{}", .0)]
    Io(#[from] std::io::Error),
}

pub type Result<T> = std::result::Result<T, IOBError>;