-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix error treatment calling todo!() and crashing in non-exhaustive match. #29
Comments
This issue is regarding the impl fmt::Display for Error on error.rs
TODO display messages:
It would be neat to tackle this as soon as possible because dropping the wildcard match forces us to add the error messages as soon as a new error enum is created, and as is, the pile could just grow forever unattended 🍍 |
#56 is solved so this is not blocked anymore d: |
I will paste here a way to trigger one of the untreated errors, since it might be useful to someone, the error in particular is the
Currently this error just panics:
The way to trigger it is to delete the file you are trying to decompress after the program has checked that it exists, you can do that inserting a sleep after the command check:
Then, while it sleeps you remove the zip that you are working with |
No description provided.
The text was updated successfully, but these errors were encountered: