Is it "safe" to call HandleException inside an thread

delphi package - automated exception handling
Post Reply
swierzbicki
Posts: 10
Joined: Wed Feb 23, 2005 6:38 pm

Is it "safe" to call HandleException inside an thread

Post by swierzbicki »

Hello,

Is it possible to call HandleException within a Thread ?
I'm basically doing this kind of stuff :

Code: Select all

while not terminated do
begin
 try
  //... do my stuff
 except
  HandleException;
 end;
end;
Thanks
madshi
Site Admin
Posts: 10754
Joined: Sun Mar 21, 2004 5:25 pm

Re: Is it "safe" to call HandleException inside an thread

Post by madshi »

Yes, most definitely!
swierzbicki
Posts: 10
Joined: Wed Feb 23, 2005 6:38 pm

Re: Is it "safe" to call HandleException inside an thread

Post by swierzbicki »

Thank you !
Post Reply