So the control-flow branch points which you disagree exist have to be dealt with anyway? So they don't exist but they do.
There are other ways to deal with errors, besides exceptions or error return codes. You can design the underlying, called-into code to explicitly follow a state machine, and have idempotent error state. Calling code then do a number of operations on such objects, and check at the end whether they succeeded or not, and if not, query the reason for the error.
Posted Nov 9, 2012 16:35 UTC (Fri) by HelloWorld (guest, #56129)
[Link]
> So the control-flow branch points which you disagree exist
Did you even read what he wrote? He didn't say they don't exist, he said that they exist regardless of whether you use exceptions or error codes to handle errors.