Add error kind if collection cannot be found

This commit is contained in:
Matthias Beyer 2016-07-08 00:11:27 +02:00
parent 0714d58db0
commit f2cc233c37

View file

@ -1,7 +1,8 @@
generate_error_module!(
generate_error_types!(BookmarkError, BookmarkErrorKind,
StoreReadError => "Store read error",
LinkError => "Link error"
StoreReadError => "Store read error",
LinkError => "Link error",
CollectionNotFound => "Link-Collection not found"
);
);