You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 2, 2024. It is now read-only.
We're currently using strings as impromptu error variants throughout the codebase. This lacks visibility for users, and risks the individual strings being treated as match cases.
We need to replace each line that constructs an InvalidArchive/UnsupportedArchive and add it to the enum declaration. Maybe we could add an unsupported method to check whose responsibility the error is?
We're currently using strings as impromptu error variants throughout the codebase. This lacks visibility for users, and risks the individual strings being treated as
matchcases.We need to replace each line that constructs an
InvalidArchive/UnsupportedArchiveand add it to the enum declaration. Maybe we could add anunsupportedmethod to check whose responsibility the error is?