1
0
mirror of synced 2024-09-19 10:26:08 +00:00
x2log/X2Log.Exception.madExcept.pas

35 lines
778 B
ObjectPascal
Raw Normal View History

2014-05-18 18:09:07 +00:00
unit X2Log.Exception.madExcept;
interface
uses
System.SysUtils,
X2Log.Intf,
X2Log.Exception.Default;
type
TX2LogmadExceptExceptionStrategy = class(TX2LogDefaultExceptionStrategy)
public
{ IX2LogExceptionStrategy }
procedure Execute(AException: Exception; var AMessage: string; var ADetails: IX2LogDetails); override;
2014-05-18 18:09:07 +00:00
end;
implementation
uses
madExcept,
X2Log.Details.Default;
2014-05-18 18:09:07 +00:00
{ TX2LogmadExceptExceptionStrategy }
procedure TX2LogmadExceptExceptionStrategy.Execute(AException: Exception; var AMessage: string; var ADetails: IX2LogDetails);
2014-05-18 18:09:07 +00:00
begin
inherited Execute(AException, AMessage, ADetails);
ADetails := TX2LogStringDetails.CreateIfNotEmpty(madExcept.CreateBugReport(etNormal, AException));
2014-05-18 18:09:07 +00:00
end;
end.