mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
* Add CreateFmt constructor for EInOutArgumentException
This commit is contained in:
parent
98ef2773e0
commit
2d3cd5bff2
@ -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);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user