imag/libimagmail/src/error.rs

12 lines
297 B
Rust
Raw Normal View History

2016-08-09 13:38:35 +00:00
generate_error_module!(
generate_error_types!(MailError, MailErrorKind,
RefCreationError => "Error creating a reference to a file/directory",
2016-08-09 13:38:35 +00:00
IOError => "IO Error"
);
);
pub use self::error::MailError;
pub use self::error::MailErrorKind;
pub use self::error::MapErrInto;