top | item 46491812

(no title)

Fizzadar | 1 month ago

As a primarily Go dev - 100% agree. The endless check and wrap error results in long chains of messages you have to grep for to understand the call stack. For what benefit? Might as well just panic and recover/log the stack in many cases.

discuss

order

morshu9001|1 month ago

The error handling is by far my least favorite aspect of Go. It's tedious and dangerous. It should either be like Rust or like JS, there isn't a good third option.

tcfhgj|1 month ago

what about checked exceptions (Java)?