Guest Posted May 29, 2021 that makes finding exception source a bit difficult  procedure RaiseException(); begin    raise Exception.Create('test') end procedure LoadCount(); begin   Parallel.Join(   procedure   begin    RaiseException();   end,   procedure   begin   end).Execute; end;  delphi and madexcept will show me stack trace like    EJoinException should be raised at original address or contain original exception as innerexception  Share this post Link to post