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

1 2 3 next
vote up 70 vote down check

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1

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 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 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 24 vote down

In Visual C++ 6.0 when you assign a const iterator to a non-const iterator, and get something like this:

C:\batch\apps\test\test.cpp(15) : error C2440: 'initializing' : cannot convert from 'class std::_Tree<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::pair<class std::basic_string<char,struct std::c
har_traits<char>,class std::allocator<char> > const ,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std:
:allocator<char> > > > >,struct std::map<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::all
ocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > >,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::vector<clas
s std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > > >::_Kfn,struct std::less<class std::basic_string<c
har,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct 
std::char_traits<char>,class std::allocator<char> > > > > >::const_iterator' to 'class std::_Tree<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::pair<class std::basic_string<char,struct std::char_
traits<char>,class std::allocator<char> > const ,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::all
ocator<char> > > > >,struct std::map<class std::basic_st
ring<char,struct std::char_traits<char>,class std::allocator<char> >,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<
char>,class std::allocator<char> > > >,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::vector<class std::basic_string<char,struct std::char_traits<char>,class
 std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > > >::_Kfn,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
 > >,class std::allocator<class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > > >:
:iterator'
        No constructor could take the source type, or constructor overload resolution was ambiguous
link|flag
show 4 more comments
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 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 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 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 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 16 vote down

IHate Windows

http://www.petersblog.org/node/2052

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

From Tortoise SVN: "Reached unreachable code." Ah, to dream the impossible dream....

link|flag
vote up 12 vote down

"Error rolling back transaction."

Sure enough, half of the transaction was committed.

link|flag
1  
Name and shame! Name and Shame! – Adriano Varoli Piazza Oct 27 at 17:18
vote up 12 vote down

This one is not caused my by programming, but I'm sure you ge the point :)

alt text

link|flag
4  
It may look daunting, but more often than not, I've found the Windows blue screen to provide more than enough information to solve a problem. Analyze the crash dump with WinDbg and you can easily track down the issue. – David Brown Mar 7 at 3:53
show 3 more comments
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 10 vote down
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in Command line code on line 1

http://en.wikipedia.org/wiki/Paamayim_Nekudotayim

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

lp0 on fire

link|flag
3  
This one really needs the backstory: en.wikipedia.org/wiki/Lp0_on_fire – Jason Mar 9 at 15:10
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

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 7 vote down

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

link|flag
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 6 vote down

Error: General Error
or
Error: Unknown Error
or
Error: An Error Has Occurred

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 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 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 5 vote down

JavaScript error in Internet Explorer < 8:

Error: Object expected

  • A totally useless error message for developers, because this is reported for almost every situation, and doesn't contain any real information.
  • Even more useless for website visitors. What are they supposed to do with this?
link|flag
vote up 5 vote down

From HPJmeter (never did get it to work):

alt text

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

alt text

This is the error you get when the preproduction version of Windows Defender expired.

Couldn't they have just said that the expiration date had passed?

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 3 vote down

A Generic GDI Error has occurred.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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