In Delphi 2009, SysUtils.pas contains this in line 425:
EProgrammerNotFound = class(Exception);
- Is this simply an easter egg or something serious?
- When should this exception be raised?
- Does it also exist in Delphi Prism and/or Free Pascal?
|
In Delphi 2009, SysUtils.pas contains this in line 425:
|
|||||
|
|
It is just the result of a long day and we had gotten a little giddy. For many, many years (ever since I'd been on the team), we'd always joked about replacing some error message in the compiler for one of the most common errors with a similar message. Internally we've always joked and poked fun at different things and people (mostly on the team itself). If you don't have a sense of humor, you're destined to an early grave. It was a simple conversation; "Oh, you should have raised the EProgrammerNotFound exception in that function." So, I guess all I can say is, "You've all played right into our hands ;-)... Buwahahaha! pwned!" |
|||||||
|
|
It was introduced in Delphi 2009, still present in Delphi 2010, and recently got some more attention on the internet. I think it is an easter egg, similar to "EBCAK" (Error Between Chair and Keyboard), and the skipping of Delphi version number 13.
I don't think EProgrammerNotFound is actually meant to be used at all, but since it is there, people will jokingly use it (similar like putting a stray "const False = True; True = not False;" in someone elses sourcecode). --jeroen |
|||||||||||||||
|
|
It is used in conjunction with the "fix-inline" technology which requires that the programmer has to be linked into the exe file ;-) |
|||
|
|
|
The origin is debatable, but it's been known for a while... Read on: PS: I don't think it exists in Delphi Prism, FreePascal or C# (but it should). |
||||
|
|
|
It's the runtime analog of the compiler's "Syntax error: Programer expected." ;> |
|||||||
|
|
With programmer, it is not the programmer that is sitting behind Delphi that is referenced. I think it is used for the fact that in D2009 and above they planned (never used it don't know if it works) that every object was waitable. |
|||||
|
|
I am a programmer, am I an exception than ? Marco Cantù also describes this in his book 'Delphi 2009 handbook' - page 242. He tells it's never jused in the VCL source code. |
|||
|
|