Add fetch-error kinds

This commit is contained in:
Matthias Beyer 2016-09-21 19:11:21 +02:00
parent 3136060ecf
commit 042f286c34

View file

@ -2,6 +2,9 @@ generate_error_module!(
generate_error_types!(MailError, MailErrorKind, generate_error_types!(MailError, MailErrorKind,
RefCreationError => "Error creating a reference to a file/directory", RefCreationError => "Error creating a reference to a file/directory",
MailParsingError => "Error while parsing mail", MailParsingError => "Error while parsing mail",
FetchByHashError => "Error fetching mail from Store by hash",
FetchError => "Error fetching mail from Store",
IOError => "IO Error" IOError => "IO Error"
); );
); );