Quote:
Originally posted by Rangsk
... Runtime errors will always cause the program to exit immediately. [/B]
|
That is unless you are using a language that supports handling exceptions (which most all do). Properly writing code to handle runtime exceptions perfectly is hard, but getting 99% of them is usually good enough.
Java has try {} catch {}, so does C# and C++ I believe. VB has the "On Error Goto" mess, but I guess it's better than nothing.