* Add CreateFmt constructor for EInOutArgumentException

This commit is contained in:
Michaël Van Canneyt 2023-11-20 21:45:47 +01:00
parent 98ef2773e0
commit 2d3cd5bff2
2 changed files with 8 additions and 0 deletions

View File

@ -251,6 +251,7 @@ type
Path: string;
constructor Create(const aMsg, aPath: string); overload;
constructor CreateRes(ResStringRec: PResStringRec; const aPath: string); overload;
constructor CreateFmt(const fmt : string; const args : array of const; const aPath : String); overload;
end;
EInvalidOpException = class(Exception);

View File

@ -320,6 +320,13 @@ begin
Inherited CreateRes(ResStringRec);
end;
constructor EInOutArgumentException.CreateFmt(const fmt: string; const args : array of const; const aPath : String);
begin
Path:=aPath;
inherited CreateFmt(fmt,args);
end;
{$if defined(win32) or defined(win64) or defined (wince)}
function EExternal.GetExceptionRecord: PExceptionRecord;
begin