2016-05-19 15:11:18 +00:00
|
|
|
generate_error_module!(
|
|
|
|
generate_error_types!(InteractionError, InteractionErrorKind,
|
2016-09-17 17:25:37 +00:00
|
|
|
Unknown => "Unknown Error",
|
|
|
|
CLIError => "Error on commandline",
|
|
|
|
IdMissingError => "Commandline: ID missing",
|
|
|
|
StoreIdParsingError => "Error while parsing StoreId",
|
|
|
|
IdSelectingError => "Error while selecting id"
|
2016-05-19 15:11:18 +00:00
|
|
|
);
|
2016-05-15 14:53:31 +00:00
|
|
|
);
|
2016-04-12 14:40:25 +00:00
|
|
|
|
2016-05-19 15:11:18 +00:00
|
|
|
pub use self::error::InteractionError;
|
|
|
|
pub use self::error::InteractionErrorKind;
|
2016-09-17 17:25:37 +00:00
|
|
|
pub use self::error::MapErrInto;
|
2016-05-19 15:11:18 +00:00
|
|
|
|