Exception.Message:'You system did not provide str (General questions)
My code:
------------------------------
try
with wodSFTP1 do
begin
Hostname := FHostName;
Login := FUserID;
ProxyType := ProxyNone;
if ByPasswd then
begin
Authentication := authPassword;
Password := FUserPass;
end
else
begin
Authentication := authPubkey;
PrivateKey := FPrivateKey;
end;
Blocking := True;
Connect;
GetFile;
Disconnect;
end;
except
on E:Exception do
begin
ShowMessage(E.Message);
end;
end;
------------------------------
If I continue to do this, sometimes it will raise the exception:'You system did not provide string representation of the error'.
Who can help me?