Create own error type
Opened this issue · 0 comments
nathiss commented
WHAT:
anyhow
currently used in the project should not be used in library crates. The dependency should be removed.
HOW:
- Remove dependency to
anyhow
. - Implement own data type to wrap all possible errors.
Note: https://edgarluque.com/blog/wrapping-errors-in-rust/
AC:
- Removed dependency to
anyhow
. - Created own error type.