I'm using Delphi 11. Considering this example code :
try
raise exception.create('Test');
except
on e : exception do
begin
showmessage(e.message+' on form X, line Y');
end;
end;
Is there a way to get the exact form X and line Y where the exception occured ?
