In Delphi 2009, SysUtils.pas contains this in line 425:
EProgrammerNotFound = class(Exception);
It is a kind of self describing joke, you can try this code
raise EProgrammerNotFound.Create('Jack is away');
or
raise ENotImplemented.Create('May be in future this will work');
The above works in Delphi 10 Seattle.