Remove unused error kinds

This commit is contained in:
Matthias Beyer 2018-04-30 18:45:28 +02:00
parent 6a40ac6b98
commit 6a5bcb2709

View file

@ -207,16 +207,6 @@ error_chain! {
display("Error when calling get({:?})", sid)
}
GetAllVersionsCallError {
description("Error when calling get_all_versions()")
display("Error when calling get_all_versions()")
}
RetrieveForModuleCallError {
description("Error when calling retrieve_for_module()")
display("Error when calling retrieve_for_module()")
}
UpdateCallError(sid: StoreId) {
description("Error when calling update()")
display("Error when calling update({:?})", sid)
@ -237,11 +227,6 @@ error_chain! {
display("Error when calling move({:?} -> {:?})", old, new)
}
MoveByIdCallError {
description("Error when calling move_by_id()")
display("Error when calling move_by_id()")
}
// Parser-related errors
MissingMainSection {