(no title)
alembic_fumes | 1 month ago
value, err := doFallibleOperation()
if err != nil {
return nil, fmt.Errorf("fallible operation failed - %w", err)
}
That error construct exclusively works for the poor human who has to debug the system, looking at its logs. No call stacks and, crucially, no automatic handling.At least with Rust's enums it is possible to make errors automatically actionable. If one skips that part and opts for anyhow because it's too much work, that's really a user problem.
I like the author's idea of "designing" errors by exposing their actionability in the interface a lot. I'm not overall sold on whether that should be the primary categorization, but at least including a docstring to each enum variant about what can be done about the matter sounds like a nice way to improve most code a little bit.
Fizzadar|1 month ago
morshu9001|1 month ago
unknown|1 month ago
[deleted]
formerly_proven|1 month ago
bheadmaster|1 month ago
If a language makes this more convenient than doing it right, one could argue that the language design is at fault.
Thaxll|1 month ago