vote up 16 vote down star
6

I got this one yesterday, and immediately decided to use a different library:

TypeError: publish_programmatically() takes exactly 17 arguments (1 given)

(I won't name and shame the library but you Python programmers may recognise it)

So, what is your most daunting/uninformative error message?

Edit: And before the duplicate people go crazy, I am not looking for "funny" or "weird" error messages.

flag
show 4 more comments

61 Answers

vote up 20 vote down

alt text

link|flag
3  
Really? Because I'm pretty sure I saw it on a joke site.. and those buttons are too small for it to be native windows box - maybe you had a virus :P – Blorgbeard Apr 23 at 7:16
4  
It's just an old joke, probably made up by a linux fan to poke fun at how often it is required to reboot windows. – BoltBait Jun 24 at 4:55
show 5 more comments
vote up 1 vote down

I know it's often put under "funny" or "weird" error messages, but you have to admit that it's more than a little daunting, almost ominous:

Values of β will give rise to dom!

link|flag
vote up 22 vote down

And the most famous of all:

"Keyboard not found, press F1 to continue."

link|flag
1  
It's not so bad, actually. If you manage to press F1, the problem is corrected :) – erikkallen Mar 7 at 12:41
1  
Doesn't that require you to become one with the machine? – John Baughman Mar 7 at 14:55
3  
No, only to plug in a keyboard. – Adriano Varoli Piazza Oct 27 at 17:15
show 1 more comment
vote up 8 vote down

How about the old Access error message when a repair/compact operation failed:

"Operation failed, Some data may be lost."

The horribleness of this message is that it says that something really scary MIGHT have happened to some of your data, but doesn't give you any way to figure out whether it happened or what specific data has gone missing. The only purpose it serves is to invoke doubt and fear.

link|flag
show 1 more comment
vote up 7 vote down
General Failure reading Drive A
Abort? Retry? Ignore? _
link|flag
1  
Wasn't Abort, Retry, Fail? – Eduardo Molteni Apr 28 at 19:02
3  
Who is General Failure and why is he always reading my computer? :) – Markus Lux Apr 28 at 19:22
1  
Much more daunting when applied to Drive C – BoltBait Jun 24 at 5:00
show 1 more comment
vote up 2 vote down

Programming with Java RMI and starting up the registry to get an NotBoundException because some other process has already nabbed port 1099.

Kill firefox? No good - port still bound.
Kill MSN? No good.
Kill Outlook? No good.
Kill anything and everything else that's running? No good.

Netstat -b? No useful info.

Restart my PC and start again then. Where's my coffee..?

Grrr.

link|flag
vote up 5 vote down

Not worthy of an upvote, but I HATE INFORMIX!

It only ever says "Syntax error" or something equally useless. It's like it's laughting at me. Obviously I know what it means, but it's so un-helpful.

I wrote a stored procedure today and spent half an hour with "Syntax Error" until I noticed I missed a ; from a statement.

Like I said. Im not looking for an upvote. I just HATE INFORMIX and wanted to vent that before going to bed. Ahh... I feel better now.

link|flag
vote up 3 vote down

A Generic GDI Error has occurred.

link|flag
vote up 10 vote down

One of my favs:

ORA-06502: PL/SQL: numeric or value error

So is my issue the numbers? Or the characters? Talk about helpful...

In my case it should usually read:

ORA-06502: PL/SQL: you forgot a semi-colon at line XXXX
link|flag
1  
Really, I find it impossible to work an hour with Oracle without getting a worthy candidate. "No such column/table" when a stored proc bails on a 10+ line SELECT that's crossing 4+ tables. – Sii Apr 28 at 19:27
vote up 7 vote down

"Catastrophic failure" in SQL Server. The very definition of daunting.

link|flag
vote up 2 vote down

When ruby says: testprog.rb:517: syntax error, unexpected $end, expecting kEND

because it tells me that somewhere in the previous 500 lines I'm missing an end. It really can't narrow it down better than that?

link|flag
vote up 2 vote down

fatal error C1001: INTERNAL COMPILER ERROR with Visual Studio 6.0.

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

This isn't really a coding-related error, but I don't think you can get more daunting than "Keyboard error: press F1 to continue".

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

"A fatal error has occurred. Please check your pulse."

link|flag
vote up 5 vote down

The most cryptic I had were TRS-80 Level 1 BASIC: WHAT? (syntax error), HOW? (runtime error), or SORRY (out of memory, meaning that you used too high a subscript on the array (yes, the array, there was only one, and it was called A (is my fondness for Lisp showing up here?))). Since it was a fully interpreted language, syntax errors would only be detected when executing that line of code.

Of late, it's been the error message about incorrect configuration, maybe re-installing will work. It may be fine for an end user dealing with a shrinkwrap application, but as a developer for in-house software it was no help at all.

link|flag
show 3 more comments
vote up 19 vote down

I was once working on an archaic FORTRAN (IV) program which at one point produced an error message in Portuguese. After spending a day tracking down what it translated to, I found it meant "It is better to be a live donkey than a dead doctor."

link|flag
vote up 30 vote down

PC LOAD LETTER anyone?

link|flag
12  
What the fuck does that mean?? – sli Mar 6 at 22:47
2  
It's also one of the funniest lines from the film, Office Space . Please go and watch it now. – Gary Willoughby May 26 at 17:02
show 5 more comments
vote up 7 vote down

Object reference not set to an instance of an object.

Now, years later, I know that this means exactly what it says, but it cause me nothing but grief for the first few years of .NET development.

link|flag
show 2 more comments
vote up 2 vote down

In Microsoft RPC: "The remote procedure call failed".

Completely useless – other MS RPC error texts at least offer some explanation, this one offers nothing.

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

ORA-12154: TNS: could not resolve service name

What they should have said is:

ORA-12154: Could not connect to the Oracle database. Depending on your specific environment, any one of 14,325 possible things could be wrong. Try Google for a confusing morass of disinformation

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

When writing Prolog: No can mean anything from "no, that clause doesn't hold" to "no, I don't have the slightest idea what you're talking about".

link|flag
vote up 5 vote down

Daunting? How about 25 years ago, using the Aztec C compiler on multi-user CPM machines, a seg fault promoted you to user level 0 status?

link|flag
vote up 3 vote down

Crystal Reports

Load Report Failed

The problem could be the file path, crystal version, the report itself, etc..

link|flag
vote up 19 vote down

Segmentation fault

when you're working in a higher-level/scripting language that's supposed to be crash-proof. Because debugging your basic toolset is so what you wanted to be doing today, right?

link|flag
show 3 more comments
vote up 57 vote down

Good ol' Vista

http://www.userkind.com/blog/wp-content/uploads/2008/01/error2.jpg

link|flag
1  
Actually... I had that happen in every single operating system and the easiest way to replicate it is to print a document using Adobe PDF Printer and cancel the save as dialog... – Andrew Moore Mar 1 at 15:19
show 2 more comments
vote up 2 vote down

The old BBC Micro when faced with something it didn't understand would often come up with:

Bad program error
link|flag
show 4 more comments
vote up 1 vote down
java.awt.HeadlessException     at
java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:159)

Huh? Guess I'll have to make do with the rest of the body.

link|flag
vote up 1 vote down

I can't remember it and I don't think I can reproduce it. It was about the buggy libc on the system I happened to work and produced a full stacktrace right from the system calls.

link|flag
vote up 19 vote down

ASP Classic

Server: "Error 500", something is wrong, have a nice day

Me: Can I get the slightest clue?

Server: No.

link|flag
1  
Easy fix: turn off friendly errors. support.microsoft.com/kb/294807 – Juliet Nov 20 at 17:47
vote up 1 vote down

The Glockenspiel C++ compiler, a commercial product of the late 80s, used to core-dump if you gave it certain incorrect C++ syntax as input. I always thought that "syntax error at line xxx" might have been a better approach...

link|flag

Your Answer

Get an OpenID
or

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