File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ EControlledException = class(Exception)
43
43
private
44
44
fCallerClass : TClass;
45
45
public
46
- constructor Create(aCaller : TObject; aMessage : string);
46
+ constructor Create(aCaller : TObject; const aMessage : string);
47
47
property CallerClass : TClass read fCallerClass write fCallerClass;
48
48
end ;
49
49
@@ -552,7 +552,7 @@ function TMIMETypes.GetFileMIMEType(const aFilename: string): string;
552
552
553
553
{ EControlledException }
554
554
555
- constructor EControlledException.Create(aCaller: TObject; aMessage: string);
555
+ constructor EControlledException.Create(aCaller: TObject; const aMessage: string);
556
556
begin
557
557
inherited Create(aMessage);
558
558
if aCaller <> nil then fCallerClass := aCaller.ClassType;
You can’t perform that action at this time.
0 commit comments