Exception in ImportBugReport

delphi package - automated exception handling
Post Reply
MasterDi
Posts: 7
Joined: Thu Dec 17, 2020 9:24 am

Exception in ImportBugReport

Post by MasterDi »

Hi, Madshi

Code: Select all

var
  br: IMEException;
begin
  br:= ImportBugReport(fileBugReport); // fileBugReport = exceptIntf.GetBugReport(true)
  br.Show; // <- error
When calling .Show, i get an error:
callstack crc : will be calculated soon
exception number : 2
exception class : Unknown
exception message : Unknown.

thread $0:
>> stack not accessible, exception location:
00000000 +ffbd8f60 Project1.exe madStackTrace +0 StackAddrToStr

main thread ($2fb4):
>> internal error in GetThreadStack:
0046ea39 +2a1 Project1.exe madExcept +0 GetThreadStack
but the documentation is simple

Code: Select all

// Example:
ImportBugReport(someBugReport).Show; 
Post Reply