Add error kind

This commit is contained in:
Matthias Beyer 2017-05-20 15:35:18 +02:00
parent e22a0db6cb
commit 692a617ce6

View file

@ -20,7 +20,8 @@
/// Error module for the DatePathCompiler type
generate_error_module! {
generate_error_types!(DatePathCompilerError, DatePathCompilerErrorKind,
DatePathCompilerError => "Unknown DatePathCompiler error"
UnknownDatePathCompilerError => "Unknown DatePathCompiler error",
StoreIdBuildFailed => "Failed building StoreId object"
);
}
pub use self::error::DatePathCompilerError;