That's the entire point of exceptions: never let an error get silenced.
My go programs are 100x as robust as my programs with exceptions because Go actually forces you to think about the error path, not just the good path.
That's the entire point of exceptions: never let an error get silenced.