Tagged Questions
An error message is information displayed when an unexpected condition occurs, usually on a computer or other device or a programming language
153
votes
25answers
2k views
How to get users to read error messages?
If you program for a nontechnical audience, you find yourself at a high risk that users will not read your carefully worded and enlightening error messages, but just click on the first button ...
54
votes
132answers
8k views
Funny or weird error messages from a development environment/application [closed]
What is the funniest or weirdest error message you've got from a development environment/application?
For example:
Catastrophic failure
'null' is null or not an object
40
votes
5answers
8k views
Error : The service is invalid
I am having some problem in installing my app on the iphone as I am constantly getting the following error message
The service is invalid
Please check your setup and try again
...
38
votes
6answers
52k views
jQuery override default validation error message display (Css) Popup/Tooltip like
I'm trying to over ride the default error message label with a div instead of a label. I have looked at this post as well and get how to do it but my limitations with CSS are haunting me. How can I ...
31
votes
65answers
3k views
Most daunting error message? [closed]
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 ...
20
votes
3answers
413 views
Tools to generate higher-quality error messages for template-based code?
Concepts, that would render these tools unnecessary, are not part of C++11.
STLFilt would have been one option but it is no longer maintained.
Clang claims to give expressive diagnostics although ...
20
votes
4answers
11k views
What's causing “Session state has created a session id, but cannot save it because the response was already flushed by the application.”
I'm getting this fault intermittently.
I found this link which summarises fairly well what I was able to find on the Google:
...
20
votes
15answers
3k views
How does one write good error messages?
While this is more of a written language issue than a coding one, it is something that programmers must do in circumstances where copy is not provided by a client or someone else. Any examples of ...
19
votes
16answers
787 views
What does your code do to contact you when things go badly wrong?
What does your code do to contact you when things go badly wrong?
Actually what i want to know is, How do you get informed by code if something went wrong on your application?
19
votes
9answers
143k views
“Stack overflow in line 0” on Internet Explorer
I realise this is not the ideal place to ask about this in terms of searchability, but I've got a page whose JavaScript code throws "Stack overflow in line 0" errors when I look at it in Internet ...
18
votes
3answers
875 views
Why does GCC say “named return values no longer supported”?
I accidentally put the opening brace of my function definition after the return statement
int id(int k) return k; { }
But GCC answered with a weird error message
error: named return values are ...
17
votes
10answers
1k views
Cryptic “Script Error.” reported in Javascript in Chrome and Firefox
I have a script that detects Javascript errors on my website and sends them to my backend for reporting. It reports the first error encountered, the supposed line number, and the time.
EDIT to ...
17
votes
9answers
727 views
Where can I find a C99 front end with good error message for students
I'm teaching a course in which students get their first experience programming in C.
We're using gcc on Linux and (for beginning students) the user experience is terrible.
I'm looking for a C front ...
17
votes
8answers
839 views
Is it “right” to translate error messages?
This is somehow subjective depending on the target translation language, but bear with me for a sec.
I have recently been involved in a translation project. The goal was to translate the strings of ...
17
votes
1answer
7k views
VS2008: Unable to start debugging, Remote Debugging Monitor has been closed
I am getting a mysterious error from time to time that I just don't get. I can "fix" it by restarting Visual Studio 2008, but that isn't exactly a solution...
It states the following:
Error while ...
16
votes
3answers
539 views
Is it possible trigger a compiler / linker error if a template has not been instantiated with a certain type?
Follow-up question to [Does casting to a pointer to a template instantiate that template?].
The question is just as the title says, with the rest of the question being constraints and usage examples ...
15
votes
4answers
3k views
15
votes
7answers
23k views
Error when updating eclipse
I click update in eclipse and i get error, its because i updated eclipse more than once. Is there any way to fix eclipse and have ability to use update?
An error occurred while collecting items to ...
14
votes
2answers
2k views
Interpreting java.lang.NoSuchMethodError message
I get the following runtime error message (along with the first line of the stack trace, which points to line 94). I'm trying to figure out why it says no such method exists.
...
13
votes
5answers
4k views
Heroku gem not working with RVM
I'm following the Ruby on Rails tutorial at http://railstutorial.org/chapters/beginning#sec:1.4.1, and all is going well until I tried to get my app going on Heroku.
I installed heroku, that worked ...
12
votes
10answers
7k views
How to get useful error messages in PHP?
I find programming in PHP quite frustrating. Quite often I will try and run the script and just get a blank screen back. No error message, just empty screen. The cause might have been a simple syntax ...
12
votes
9answers
8k views
How do you handle Rail's flash with Ajax requests?
I'm pretty happy with the solution that I came up with. Basically, I have a helper method that reloads the flash inline, and then I have an after_filter that clear out the flash if the request is ...
11
votes
3answers
534 views
Error: could not find function … in R
I am using R and tried some.function but I got this error message :
Error: could not find function `some.function`
This question comes up very regularly. When you get the error: could not find ...
11
votes
3answers
514 views
Integrate type name in static_assert output?
I like to give helpful errors / messages, and I also want to do so for my static_asserts. The problem is, that they depend on template parameters. Normally, those parameters will get displayed on way ...
11
votes
4answers
6k views
Display php errors when using Zend framework
I've been using Zend Framework and just living with this problem for a while, but it's now just gotten too annoying so i'll send the question out to you.
There are certain problems within the Zend ...
11
votes
3answers
8k views
Why am I getting the “LoaderLock was detected” warning when debugging?
I'm developing an add-on for AutoCAD 2009. The project output is a class library. When I attempt to debug and load the class library, I get this "LoaderLock was detected message." I've been writing ...
10
votes
1answer
575 views
libagl alphaPlaneWorkaround error messages in LogCat
I have recently noticed, while debugging an app, that LogCat reports numerous error ("E") messages with pid=92, tag=libagl and Message="uses alphaPlaneWorkaround".
The messages appear when my app's ...
10
votes
8answers
99k views
Java: “Could not find the main class. Program will exit”
I'm trying to run SQuirreL SQL.
I've downloaded it and installed it, but when I try to run it I get this error message:
Java Virtual Machine Launcher.
Could not find the main class.
Program ...
9
votes
4answers
153 views
What does the error message “Attempt to split long or double on the stack” indicate?
I am getting the following error from my code:
Attempt to split long or double on the stack
I am clueless about the origin of this error and do not know how to debug it. What kind of problem ...
9
votes
4answers
555 views
Null check error message as “is null” or “was null”
When doing null checks in Java code, and you throw IllegalArgumentExceptions for null values, what kind of message template do you use?
We tend to use something like this
public User getUser(String ...
9
votes
6answers
961 views
How to display messages to the user after a POST + HTTP redirect
I’m using the PRG pattern to avoid multiple form submission. It has, however, a serious drawback — you cannot simply echo the confirmation message to the user (obviously, the user won’t see the page, ...
9
votes
1answer
3k views
Defeating the “multiple methods named 'xxx:' found” error
In my current project inside the file ViewController.m, running the method:
[[connection writer] writeData: data];
returns the warning:
warning: multiple methods named 'writeData:' found
I am ...
8
votes
4answers
301 views
Is there way to give user-friendly error message on constraint violation
Say I have column Gender and constraint CHECK( Gender IN ('F', 'M', 'OTHER')).
If I accidentally forgot to handle this on client side, user will see smth like
ORA-02290: check constraint ...
8
votes
3answers
1k views
VS 2008 breakpoint will not currently be hit. No symbols have been loaded for this document
I am struggling to overcome this obstacle and I have high hopes that someone on SO can help.
When I set a breakpoint in my class library project. It appears as a normal breakpoint. When I start ...
8
votes
5answers
395 views
Perl built in exit and print in one command
I know I can die but that prints out the script name and line number.
I like to do things like die 'error' if $problem;
Is there a way to do that without printing line number stuff?
It would be ...
8
votes
2answers
193 views
gcc error message repository
I've spent a lot of time using the Microsoft compiler cl and found that the error codes that it gives in compile messages (like C1234, C5432, etc.) can be very useful. When I get a error I'm ...
8
votes
7answers
13k views
Detailed 500 error message, ASP + IIS 7.5
IIS 7.5 , 2008rc2, classic asp, 500 error msg:
The page cannot be displayed because an internal server error has occurred.
I need to know how to configure iis to get detailed error.
I've tried ...
8
votes
4answers
128 views
Python: eliminating stack traces into library code?
When I get a runtime exception from the standard library, it's almost always a problem in my code and not in the library code. Is there a way to truncate the exception stack trace so that it doesn't ...
8
votes
2answers
781 views
What could be causing these error?
I am seeing a very large number of the errors below in my log files. Nothing seems to be causing them in the way that none of our users are seeing any errors. What could be causing them? We are ...
7
votes
2answers
97 views
Cannot access underlying event field
I am trying to cause TButton Click event from within TListBox doubleclick event by simply calling:
Button1.Click;
I am always able to do that under Delphi XE and version below it, but now it is ...
7
votes
2answers
220 views
How can I change the TEdit default error message (NumbersOnly mode)?
How can I change the TEdit's default error message when I use it in NumbersOnly mode. I mean this error:
Unacceptable character You can only type a number here
Is it possible to change this ...
7
votes
2answers
3k views
Error installing sqlite3 gem via bundler
I'm trying to get the sqlite3-ruby gem (version 1.3.4) installed on my account (CentOS on shared hosting, so I need to install this without root) and the version of sqlite installed is not new enough ...
7
votes
2answers
187 views
How to Reach the Custom Errors page in ASP.NET when Session State Provider is Down?
I am trying to show a customer errors page in ASP.NET when the database is down. I use the SQL Server mode to hold the session data. The problem is that the custom errors page is never called.
Since ...
7
votes
6answers
1k views
How to exclude a folder that is producing warnings/errors in an Eclipse project?
Okay. I'm sick of this problem. This has to have an easy fix, I'm sure of it!! I hope SO can help me to get rid of this once and for all!
Question
How do we get Eclipse to stop trying
to ...
7
votes
5answers
320 views
How to read c++ errors involving templates
I'm learning C++. I regularly get errors that look like this
/usr/lib/gcc/i686-pc-cygwin/4.3.4/include/c++/bits/basic_string.h:1458: instantiated from 'static _CharT* ...
7
votes
5answers
333 views
How to retrieve useful system information in java?
Which system information are useful - especially when tracing an exception or other problems down - in a java application?
I am thinking about details about exceptions, java/os information, ...
7
votes
9answers
22k views
Android Question - “Id cannot be resolved or is not a field” error?
I keep getting this error... should I just make "id" a field?
My code:
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
ImageView ...
7
votes
3answers
2k views
Save output error messages to file in MATLAB
Is there a way to save MATLAB error messages to a file?
This may be a simple issue, but Google couldn't give me an answer. I've compiled a GUI executable for use without a MATLAB license, and ...
7
votes
5answers
25k views
Error including image in Latex
I am getting the following error while compiling my Latex File :
! LaTeX Error: Cannot determine size of graphic in tree.jpg (no BoundingBox).
Why do I get this error ? What has this to do with an ...
7
votes
4answers
4k views
Message Queue Error: cannot find a formatter capable of reading message
I'm writing messages to a Message Queue in C# as follows:
queue.Send(new Message("message"));
I'm trying to read the messages as follows:
Messages messages = queue.GetAllMessages();
...