From 692a617ce63f4f3a4524988c5615e0d4daca75e8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 20 May 2017 15:35:18 +0200 Subject: [PATCH] Add error kind --- libimagentrydate/src/datepath/error.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libimagentrydate/src/datepath/error.rs b/libimagentrydate/src/datepath/error.rs index 5516b7ef..1a163208 100644 --- a/libimagentrydate/src/datepath/error.rs +++ b/libimagentrydate/src/datepath/error.rs @@ -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;