|
|
|
|
|
by throw10920
1514 days ago
|
|
> that error should be managed by its caller Objectively false. Correct answer: the error should be managed by the code that makes sense to handle the error. > Any other approach means callstacks are unpredictable Also false. I use conditions regularly, and my callstacks are very predictable - errors bubble upward through the call tree until they're handled. There's nothing simpler. > which makes a program way way harder to model Also false. I have no problem at all modeling and understanding my code rife with conditions. |
|