Add error kinds for Move functions
This commit is contained in:
parent
84a0778a5b
commit
e75b524e53
1 changed files with 3 additions and 1 deletions
|
@ -42,7 +42,9 @@ generate_custom_error_types!(StoreError, StoreErrorKind, CustomErrorData,
|
||||||
RetrieveForModuleCallError => "Error when calling retrieve_for_module()",
|
RetrieveForModuleCallError => "Error when calling retrieve_for_module()",
|
||||||
UpdateCallError => "Error when calling update()",
|
UpdateCallError => "Error when calling update()",
|
||||||
RetrieveCopyCallError => "Error when calling retrieve_copy()",
|
RetrieveCopyCallError => "Error when calling retrieve_copy()",
|
||||||
DeleteCallError => "Error when calling delete()"
|
DeleteCallError => "Error when calling delete()",
|
||||||
|
MoveCallError => "Error when calling move()",
|
||||||
|
MoveByIdCallError => "Error when calling move_by_id()"
|
||||||
);
|
);
|
||||||
|
|
||||||
generate_custom_error_types!(ParserError, ParserErrorKind, CustomErrorData,
|
generate_custom_error_types!(ParserError, ParserErrorKind, CustomErrorData,
|
||||||
|
|
Loading…
Reference in a new issue