|
|
|
|
|
by bluGill
5 days ago
|
|
There are too many different exemptions to make a blanket statement. Sometimes user entered a wrong value is an exception and you need to handle it. Sometimes the exception is an out of memory error which realistically will never happen in the real world so you can ignore it. |
|
Out of memory error can happen in many environments because for example in C++ it's about the allocator. You might have a custom allocator with some limit that has no bearing whatsoever what the OS does.