vote up 18 vote down star
18

What is the funniest/weirdest error message you've got from a development environment/application?

  • "Catastrophic failure"
  • "'null' is null or not an object"
flag
1  
Wow! someone woke up on a bad mood today....... there is no community wiki criteria, it is up to the community, so as long the community does not close this question it is still a legitime community wiki, that is why it is called community, I don't own the question any more, the community does. – pablito Mar 19 at 12:51
show 3 more comments

97 Answers

vote up 0 vote down

Haven't seen it personally (and I guess isn't not unique to a development environment), but Printer on Fire has got to be the classic in this genre

link|flag
vote up 0 vote down

In SQLite3,

error:not an error

link|flag
vote up 1 vote down

Get this one every couple weeks. Makes me chuckle everytime.

System.ComponentModel.Win32Exception: The operation completed successfully
   at System.Drawing.Printing.StandardPrintController.OnStartPrint(PrintDocument document, PrintEventArgs e)
   at System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint(PrintDocument document, PrintEventArgs e)
   at System.Drawing.Printing.PrintController.Print(PrintDocument document)
   at System.Drawing.Printing.PrintDocument.Print()
   at CrystalDecisions.Windows.Forms.ReportDocumentBase.Print()
link|flag
vote up 2 vote down

In a software I once worked on, there was an exception for an impossible condition to happen (sort of "if true: do this; elif false: do that; else: raise exception"). The message was:

"Impossible condition happened. How the hell did you get here ?"

The test department was able to get there anyway, but unfortunately I am not aware of the details.

link|flag
vote up 0 vote down

Error: no error

link|flag
vote up 19 vote down

Having a bad day at an old job, I typed a certain 4 letter word for manure at the command line prompt. Much to my surprise, an ASCII art picture of a mushroom appeared, followed by the statement "Are you a mushroom too? Kept in the dark and fed [same four letter word]". It turned out my boss had set this up to lighten his bad days!

link|flag
show 1 more comment
vote up 7 vote down

My fav!

Error : The operation completed successfully

Example:

Error : The operation completed successfully

link|flag
vote up 0 vote down

From an unnamed database for Windows(tm):

"Whoops! Nothing to see here, move along."

link|flag
vote up 4 vote down

The most funny message I ‘ve ever seen was .. my own. Here is the story:
In 2004 I was a member of a team making huge credit application system. The client application was written in Delphi. It consisted one big form called TemplateForm. Actual client forms for processing credits actually inherited from this form, so there was one MortgageForm, one CreditCardForm, one PersonalForm, one BussinesForm, and so on.
One day I have checked in my sources, being sure it will work, and went home. During the evening developer from Personal Credits Team changed slightly our TemplateForm – instead of hardcoding form’s title, he have added a GetFormName function call in TemplateForm constructor. The only pain was he made GetFormName an abstract function in a template without letting the rest of the team know about the change (in fact, he changed PersonalForm, but did not change other forms inheriting from TemplateForm). Nowadays Delphi warns about creating object of a class containing unimplemented abstract methods… but it was Delphi 5, and night build run smoothly.
The following day, when I was eating breakfast, I was reading desperate mail from our support and business knowledge team. They were complaining about “Abstract Error” (which is Delphi response to calling abstract method). When Ann sent a message that she does not understand what “Abstract error” meant, her colleague Lukas, wrote that she would probably understand error message regarding cloths, dresses, perfumes and “girls stuff”. She replied, that she would rather have Aidan Quinn on error message. ‘WTF?’ asked developers, and quickly googled this:
http://www.imdb.com/name/nm0001644/
So, when we came to work we have downloaded a big picture of Aidan, created TdlgAidanInfo form class, and put a small Panel in TemplateForm. This small panel had OnClick event, and this event was firing Aidan form using ShowModal . Ann was very happy, and she planned to show this trick to our customer during some hard meeting, to “clean some air” (we were constantly kicked by our customer).
Unfortunately one of Personal Credits Team developers saw the increase in size of the executable. Since EXE was something about 6 MB, we thought no one will notice additional 200 kB… But he notices. Most dialogs was named something like dlgALL_ALL_ZBZ_LST, making it almost impossible to understand, so TdlgAidanInfo was soon discovered and deleted. Our boss was informed and there was a bit of a mess.
Since Aidan’s photo had been removed, we had put one line of code in the place where his window was previously. This was a message box with a text “Aidan Quinn used to live there” and a title “It is important to have a sense of humor”. Aidan’s story was then forgotten. About two years later our support team has been called by bank executive reporting some strange bug about credit amount. This executive was a bit terrified because he thought he was getting crazy… he said:
‘We [him and a clerk] panicked a bit and started to try various options to get right credit amount. And we clicked a lot of places on UI and … and some unexpected message box about someone named Aidan Quinn appeared!’
We have spent about a hour laughing. Instead of support team Ann responded to customer: ‘This message box is not unexpected.’.

link|flag
vote up 0 vote down

Once, in Win2000, I got a little error window with no words, just the X red icon and the Ok button. I pressed OK and nothing more happened.

Other error I got when I was learning pointers in C++ was: "La memoria no se puede "written" 0x098458458..."

Two languages in one error LOL!

other one: In VB6 when I was trying to share long pointers with a C++ dll: "Expression too complex"

link|flag
show 1 more comment
vote up 0 vote down

"Pure Virtual Function Called"

link|flag
vote up 0 vote down

Server Error in '/APPNAME' Application.


Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30035: Syntax error.

Source Error:

Line 1:  //---------------------------------------------------------
Line 2:  // A header comment (sanitized for posting)
Line 3:  //---------------------------------------------------------

Source File: c:\data\www\appname\controls\jsclasses\controlname.js Line: 1

link|flag
vote up 6 vote down

The code has thrown an unhandled MoronicUserException. Message: "User was a moron."

link|flag
vote up 2 vote down

The Mac assembler I was forced to use in school.

"Well, Smoke me a kipper!"

For almost every error.

link|flag
show 1 more comment
vote up 2 vote down

A few errors I enjoyed:

Error: No help available for %d

Error: Success

Error: Error ocurred when attempting to print error message.

Error: Last line of file ends without a newline!

link|flag
vote up 1 vote down

Error occurred on error page.

This message appeared when a new error occurred on the error page. Our webapp displays the error page when any error is encountered somewhere in the app.

link|flag
vote up 1 vote down

alt text

link|flag
vote up 0 vote down

"There is something rotten in the state of Denmark"

This was THE ONLY ERROR MESSAGE in a home grown backup utility at my place of employment. It did double buffer processing to tape, and any error would take it to a completion handler, which would dump out that message and abort.

link|flag
vote up 4 vote down

This PHP error threw me the first time I saw it:

Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM expecting T_STRING in...

(it means something like “double colon” in hebrew)

link|flag
1  
Yes that really threw me off when I was learning OO in PHP. Had to google it. – Neil Aitken Sep 17 at 9:16
show 1 more comment
vote up 2 vote down

This is one of my favorites, written to the console by VLC during normal operation (there don't seem to be any problems associated with it):

** (.:5762): CRITICAL **: gtk_pizza_set_size: assertion `pizza != NULL' failed
link|flag
vote up 2 vote down

Was using a Microsoft Bluetooth mouse on my Dell up until recently. Suddenly one day I was greeted with this doozy:

alt text

Never did figure out what it meant and now I'm using a Logitech USB mouse.

link|flag
vote up 0 vote down

Both of these are real error messages whose conditions (according to the original programmer) were impossible. All the developers working on that project after these were written have come across them at one time or another.

This can't be happening!

Never actually saw this one though I've seen a screen shot framed in one of the senior developer's office wall.

Found a Ghost!

This one happen at least twice while I was working for the company. Once it appeared while QA was testing, the other we found out about when a customer called in inquiring about it after it popped up on their screen in the middle of the day.

link|flag
vote up 2 vote down

I sometimes put "something" in when I haven't yet come up with a name for... well, something - and one day from this code:

x = something;

my system gave me the error message:

something cannot be resolved

link|flag
vote up 0 vote down

"Unknown Hard Error"

on explorer startup...

link|flag
vote up 0 vote down

I was trying to update my amazon mp3 application when I got this little gem. It's so ridiculous I almost believe I edited the photo without telling myself. What were they smoking?

amazon error

link|flag
vote up 4 vote down

In Inform 7, the code:

3 is a scene.

produces the error message:

That, sir, is a damned lie!
link|flag
vote up 5 vote down

Error: "If you see this, I have caught and handeled more exceptions for you than you deserve. Failing now. Withholding debug information. Bye."

link|flag
vote up 0 vote down

Here is one from a product I am working on (note it is a warning not an error):

Warning: Got unexpected '%s' exception '%s'. This is the last place to handle this exception but it can't be. The exception is ignored to avoid crashing the tool. The optimization result is incomplete and your data might be corrupted. Sorry.

link|flag
vote up 0 vote down

The finger server at an old workplace (internal use only, of course) allowed you to try to finger aliases as well as actual addresses. I tried fingering one of these aliases once and received the response:

Error: Success.

What's happening is probably clear to most UN*X world programmers, but I found it hilarious because I'd just fingered my own alias.

link|flag
vote up 4 vote down

There are a few that I'll never forget:

BS Error on the old TRS-80's basic.


Code has no affect on a more recent C/C++ compiler. I thank the compiler for not making value judgments on my code.


But my absolute favorite was on the Amiga 500. I popped a disk out before it was finished writing to it. It slid the screen down two inches and in flashing black and red letters across the top said:

Put that disk BACK.

Never did that again.

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.