imag/imag-store/src/error.rs

10 lines
236 B
Rust
Raw Normal View History

2016-01-24 19:19:56 +00:00
use std::error::Error;
use std::fmt::Error as FmtError;
use std::fmt::{Display, Formatter};
generate_error_types!(StoreError, StoreErrorKind,
BackendError => "Backend Error",
NoCommandlineCall => "No commandline call"
);
2016-01-24 19:19:56 +00:00