Hacker News new | ask | show | jobs
by NateDad 3136 days ago
Your compiler can't handle errors for you. Error propagation is not error handling.
1 comments

Well, if(err != nil) return err; pretty much sounds like propagation to me ...
Yes, which is not error handling. Exceptions automatically handle error propagation, which is not the hard part of dealing with errors.