How to disable exceptions or Runtime error 231? |
|
I have a server console application wich is crashing down with "Runtime
error 231. Too many nested exception"
All the exceptions are been treated, but looks like delphi counts the number
of exception occurred, not untreated.
I need to disable delphi exception counter. Is possible to do this?
There is another way to solve this problem?
Thanks
Flavio
|
Re: How to disable exceptions or Runtime error 231? |
|
In article <3f7aef7a@newsgroups.borland.com>, Flavio Tobias wrote:
> I have a server console application wich is crashing down with "Runtime
> error 231. Too many nested exception"
> All the exceptions are been treated,
But obviously not correctly. You should never allow an exception to be raised
inside an exception handler, for example.
> but looks like delphi counts the number
> of exception occurred, not untreated.
> I need to disable delphi exception counter. Is possible to do this?
> There is another way to solve this problem?
Of course: find the source of the errors and fix that. Programming with a
band-aid is never a good solution.
--
Peter Below (TeamB)
Use the newsgroup archives :
http://www.mers.com/searchsite.html
http://www.tamaracka.com/search.htm
http://groups.google.com
http://www.prolix.be
|