[QUALITY] Consistent error structure across all crate modules #23
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
geomind_code/my_fs#23
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current
src/error.rsprovides a solid foundation for unified error handling. However, many modules are still reporting primitive errors or using disparate error types. This ticket tracks the refactor to ensure all modules (server, auth, db) consistently use theErrorenum variants defined insrc/error.rsand leverage the classification methods like.is_transient()and.is_fatal()for more robust error handling logic.