summaryrefslogtreecommitdiffstats
path: root/imag-store/src/error.rs
blob: ae9162f0389279fcc70a5eaf8e1b0659eb630768 (plain)
1
2
3
4
5
6
7
8
9
10
generate_error_module!(
    generate_error_types!(StoreError, StoreErrorKind,
        BackendError      => "Backend Error",
        NoCommandlineCall => "No commandline call"
    );
);

pub use self::error::StoreError;
pub use self::error::StoreErrorKind;