|
|
|
|
|
by stackghost
609 days ago
|
|
Exceptions are great. There's an argument to be made that one should handle errors where they occur, but that's often not desirable or even possible. If I call into a library and something goes awry I don't want to have to care about the inner workings of that library. Most of the time it's sufficient for me to try/catch that call and if it fails I'll handle it as gracefully as possible at my level. |
|