Newsgroups : Borland : borland.public.delphi.internet.winsock : 2008 Jan : Tidtcpserver onexecute exception
| Subject: | Tidtcpserver onexecute exception |
| Posted by: | "Emin turan" (no..@none.com) |
| Date: | 25 Jan 2008 04:16:36 |
procedure TfrmTcpserver.ServerExecute(AThread: TIdPeerThread);
begin
try
.....
.....
.....
except on e:exception do
begin
if pos( 'EID', uppercase(e.ClassName) ) <> 0 then raise
else ExceptionToLog( e.Message );
end;
end;
end;
does this code cause any problem for indy?
I want to save all exceptions that are not related with indy.