TExceptAction eaSendBugReport3

delphi package - automated exception handling
Post Reply
oldk
Posts: 2
Joined: Fri Nov 13, 2015 5:25 am

TExceptAction eaSendBugReport3

Post by oldk »

Hi there.

Can anyone tell me what the TExceptAction 'eaSendBugReport3' indicates? I've checked http://help.madshi.net/madExceptUnit.htm but this documentation doesn't mention this ExceptAction type.

Cheers.

Owen.
madshi
Site Admin
Posts: 10753
Joined: Sun Mar 21, 2004 5:25 pm

Re: TExceptAction eaSendBugReport3

Post by madshi »

Code: Select all

type
  TExceptAction = (eaSendBugReport,  eaSaveBugReport,  eaPrintBugReport,   // before assistant
                   eaSendBugReport2, eaSaveBugReport2, eaPrintBugReport2,  // after assistant
                   eaSendBugReport3, eaSaveBugReport3, eaPrintBugReport3,  // after sending/saving/printing
                   eaShowBugReport,
                   eaHelp,
                   eaContinueApplication, eaRestartApplication, eaCloseApplication);
oldk
Posts: 2
Joined: Fri Nov 13, 2015 5:25 am

Re: TExceptAction eaSendBugReport3

Post by oldk »

Thank you.
Post Reply